Changed unnecessary pass-by-value to pass-by-reference.

This commit is contained in:
rude
2010-02-24 21:21:45 +01:00
parent bdafe0e455
commit 368765820e
3 changed files with 25 additions and 25 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ namespace thread
{
public:
virtual ~ThreadModule(){};
virtual void unregister(std::string name) = 0;
virtual void unregister(const std::string & name) = 0;
}; // ThreadModule
} // thread