Skip to content
Snippets Groups Projects
Commit 85f25aeb authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Trivial warning fixes

parent 8dfcd9fa
No related branches found
No related tags found
No related merge requests found
......@@ -289,9 +289,6 @@ class LLShaderMgr
std::vector<std::string> mReservedUniforms;
//preprocessor definitions (name/value)
std::map<std::string, std::string> mDefinitions;
protected:
// our parameter manager singleton instance
......
......@@ -42,7 +42,7 @@ class LLSD;
class LLTransTemplate
{
public:
LLTransTemplate(const std::string name = std::string(), const std::string text = std::string()) : mName(std::move(name)), mText(std::move(text)) {}
LLTransTemplate(std::string name = std::string(), std::string text = std::string()) : mName(std::move(name)), mText(std::move(text)) {}
std::string mName;
std::string mText;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment