remove mutable

This commit is contained in:
SamGondelman 2016-06-20 11:11:54 -07:00
parent c30c2b64b2
commit 34d18da4e4

View file

@ -185,7 +185,7 @@ protected:
Type _type; Type _type;
// Whether or not the shader compilation failed // Whether or not the shader compilation failed
mutable bool _compilationHasFailed { false }; bool _compilationHasFailed { false };
}; };
typedef Shader::Pointer ShaderPointer; typedef Shader::Pointer ShaderPointer;