From 9134263ca185a34726cb4cd2f9ee4849f9354674 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Fri, 12 Apr 2013 15:05:31 +0200 Subject: Removed static member definitions that are no longer needed The requirement for having these definitions was relaxed in the C++11 standard. In short, they are not needed anymore for static const integral types. Details: http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#454 --- src/game-server/triggerareacomponent.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/game-server/triggerareacomponent.cpp') diff --git a/src/game-server/triggerareacomponent.cpp b/src/game-server/triggerareacomponent.cpp index e935490..b599546 100644 --- a/src/game-server/triggerareacomponent.cpp +++ b/src/game-server/triggerareacomponent.cpp @@ -57,8 +57,6 @@ void ScriptAction::process(Entity *obj) mScript->execute(obj->getMap()); } -const ComponentType TriggerAreaComponent::type; - void TriggerAreaComponent::update(Entity &entity) { MapComposite *map = entity.getMap(); -- cgit