diff options
author | Adam <Adam@anope.org> | 2014-01-06 13:59:14 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-01-06 13:59:14 -0500 |
commit | 09879c5c15c893f3bdae858853285473d76c57b4 (patch) | |
tree | 2670226bcea1fd7ccf7e63b6718dd25dec313c61 /modules/commands/os_news.cpp | |
parent | 12f55e4711ef4f2624ed0603a05a83a0a5ac4ed7 (diff) |
Fix compile with -std=c++11
Diffstat (limited to 'modules/commands/os_news.cpp')
-rw-r--r-- | modules/commands/os_news.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/os_news.cpp b/modules/commands/os_news.cpp index 6672e481d..b74ca3b57 100644 --- a/modules/commands/os_news.cpp +++ b/modules/commands/os_news.cpp @@ -69,7 +69,7 @@ struct MyNewsItem : NewsItem data["time"] << this->time; } - static Serializable* Unserialize(Serializable *obj, Serialize::Data &data) anope_override + static Serializable* Unserialize(Serializable *obj, Serialize::Data &data) { if (!news_service) return NULL; |