From 50631595815cb778d7cbf65e4fed2281f710f997 Mon Sep 17 00:00:00 2001 From: Sam Gateau Date: Fri, 20 Mar 2015 12:00:16 -0700 Subject: [PATCH] cleaning code for review --- 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 5ac9b3a173..c8db7cfd39 100755 --- a/libraries/gpu/src/gpu/Shader.h +++ b/libraries/gpu/src/gpu/Shader.h @@ -69,7 +69,7 @@ public: public: std::string _name; int32 _location; - Binding(const std::string&& name, int32 loc = INVALID_LOCATION) : _name(name), _location(loc) {} + Binding(const std::string& name, int32 loc = INVALID_LOCATION) : _name(name), _location(loc) {} }; template class Less {