Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
Conflicts:
	src/server/game/Handlers/ItemHandler.cpp
  • Loading branch information
Shauren authored and DDuarte committed Aug 21, 2015
1 parent e287d24 commit 1a553b7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/common/Logging/Appender.h
Expand Up @@ -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

0 comments on commit 1a553b7

Please sign in to comment.