Changed string to reference

This commit is contained in:
cen1 2015-11-16 19:31:18 +01:00
parent 3914288b05
commit 7fa9f0430a

View file

@ -34,7 +34,7 @@ namespace pvpgn
class InitError :public std::runtime_error
{
public:
explicit InitError(const std::string str)
explicit InitError(const std::string& str)
:std::runtime_error(str) {}
~InitError() throw() {}
};