From 34d18da4e4ecd18f330c7ae5294003628e893dfa Mon Sep 17 00:00:00 2001 From: SamGondelman Date: Mon, 20 Jun 2016 11:11:54 -0700 Subject: [PATCH] remove mutable --- libraries/gpu/src/gpu/Shader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/gpu/src/gpu/Shader.h b/libraries/gpu/src/gpu/Shader.h index ec712bfa78..e4643f2b7c 100755 --- a/libraries/gpu/src/gpu/Shader.h +++ b/libraries/gpu/src/gpu/Shader.h @@ -185,7 +185,7 @@ protected: Type _type; // Whether or not the shader compilation failed - mutable bool _compilationHasFailed { false }; + bool _compilationHasFailed { false }; }; typedef Shader::Pointer ShaderPointer;