diff options
author | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-02-13 20:17:17 +0100 |
---|---|---|
committer | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-02-13 20:17:17 +0100 |
commit | 4b06295dbb1b3b928df3a7bbdfc5968e4a604b2c (patch) | |
tree | 683c138743e1e563abaa739f36e924855a48b977 /src/core/common/Exceptions.hpp | |
parent | c99b5932ef47a5d74b5bccffb52c1ccabac6ae53 (diff) |
made CharReader non-copyable but movable.
Diffstat (limited to 'src/core/common/Exceptions.hpp')
-rw-r--r-- | src/core/common/Exceptions.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/common/Exceptions.hpp b/src/core/common/Exceptions.hpp index b63c32a..337480a 100644 --- a/src/core/common/Exceptions.hpp +++ b/src/core/common/Exceptions.hpp @@ -109,7 +109,7 @@ public: * @param loc is a reference to a variable with location data. */ template <class LocationType> - LoggableException(std::string msg, LocationType loc) + LoggableException(std::string msg, const LocationType &loc) : LoggableException(std::move(msg), SourceLocation::location(loc)) { } |