diff --git a/src/codegen/codegen_opengl.cc b/src/codegen/codegen_opengl.cc index 0c56b44104d96..4a2aebaec5587 100644 --- a/src/codegen/codegen_opengl.cc +++ b/src/codegen/codegen_opengl.cc @@ -112,7 +112,7 @@ std::string CodeGenOpenGL::GetBufferRef( return os.str(); } -void CodeGenOpenGL::PrintType(Type t, std::ostream& os) const { +void CodeGenOpenGL::PrintType(Type t, std::ostream& os) { CHECK(false) << "Not implemented"; } diff --git a/src/codegen/codegen_opengl.h b/src/codegen/codegen_opengl.h index fad81cd57cad9..542f009190ee0 100644 --- a/src/codegen/codegen_opengl.h +++ b/src/codegen/codegen_opengl.h @@ -26,7 +26,7 @@ class CodeGenOpenGL final : public CodeGenC { std::string GetBufferRef(Type t, const Variable *buffer, Expr index) final; - void PrintType(Type t, std::ostream& os) const final; // NOLINT(*) + void PrintType(Type t, std::ostream& os) final; // NOLINT(*) // Codegen for immediate values void VisitExpr_(const IntImm *op, std::ostream &os) final; // NOLINT(*)