aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2015-08-19 17:16:33 +0200
committerDDuarte <dnpd.dd@gmail.com>2015-08-21 14:02:03 +0100
commit1a553b780b160deb8fdb6bd948c7d7999e19798f (patch)
tree31b709b30088363f7c429e0b49f330674ffd889d /src
parente287d243a3e4b58b597e284f32f6c59b6417c7e2 (diff)
Build fixes
Conflicts: src/server/game/Handlers/ItemHandler.cpp
Diffstat (limited to 'src')
-rw-r--r--src/common/Logging/Appender.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/Logging/Appender.h b/src/common/Logging/Appender.h
index 7c5aa41924d..6382399a0b4 100644
--- a/src/common/Logging/Appender.h
+++ b/src/common/Logging/Appender.h
@@ -126,9 +126,7 @@ Appender* CreateAppender(uint8 id, std::string const& name, LogLevel level, Appe
class InvalidAppenderArgsException : public std::length_error
{
public:
- using std::length_error::length_error;
-
- explicit InvalidAppenderArgsException(std::string const& message) : length_error(message) { }
+ explicit InvalidAppenderArgsException(std::string const& message) : std::length_error(message) { }
};
#endif