aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/base_exception.hpp
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2010-01-28 11:33:12 +0100
committerAlexander Sulfrian <alexander@sulfrian.net>2013-01-05 17:17:46 +0100
commitaf0917623ac806e35a88efe8983b16965c92ec0d (patch)
tree682bddb5494321437a66783e1d0631494305ac9a /src/utils/base_exception.hpp
parent271c7cabf5e16a1afed560b9f707b3955b3ec725 (diff)
downloadusdx-af0917623ac806e35a88efe8983b16965c92ec0d.tar.gz
usdx-af0917623ac806e35a88efe8983b16965c92ec0d.tar.xz
usdx-af0917623ac806e35a88efe8983b16965c92ec0d.zip
make string constructor argument a constant reference
Diffstat (limited to 'src/utils/base_exception.hpp')
-rw-r--r--src/utils/base_exception.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/base_exception.hpp b/src/utils/base_exception.hpp
index 44f3c2b7..08e4b371 100644
--- a/src/utils/base_exception.hpp
+++ b/src/utils/base_exception.hpp
@@ -38,7 +38,7 @@ namespace usdx
std::string message;
protected:
- BaseException(std::string message);
+ BaseException(const std::string& message);
public:
~BaseException() throw ();