Skip to content
Snippets Groups Projects
Commit ba60e090 authored by callum's avatar callum
Browse files

Fix for typo that broke build.

parent fb7af4d0
No related branches found
No related tags found
No related merge requests found
...@@ -53,13 +53,13 @@ class LLCommandId ...@@ -53,13 +53,13 @@ class LLCommandId
LLCommandId(const std::string& name) LLCommandId(const std::string& name)
: mName(name) : mName(name)
{ {
mUUID = LLUUID::LLUUID::generateNewID(name); mUUID = LLUUID::generateNewID(name);
} }
LLCommandId(const Params& p) LLCommandId(const Params& p)
: mName(p.name) : mName(p.name)
{ {
mUUID = LLUUID::LLUUID::generateNewID(p.name); mUUID = LLUUID::generateNewID(p.name);
} }
const std::string& name() const { return mName; } const std::string& name() const { return mName; }
......
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