cleaning code for review

This commit is contained in:
Sam Gateau 2015-03-20 12:00:16 -07:00
parent 1babf53643
commit 5063159581

View file

@ -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 <typename T> class Less {