[Orxonox-commit 5807] r10467 - in code/branches/core7/src/libraries/core: class object
landauf at orxonox.net
landauf at orxonox.net
Mon May 25 11:50:16 CEST 2015
Author: landauf
Date: 2015-05-25 11:50:15 +0200 (Mon, 25 May 2015)
New Revision: 10467
Modified:
code/branches/core7/src/libraries/core/class/Identifier.h
code/branches/core7/src/libraries/core/object/IteratorBase.h
code/branches/core7/src/libraries/core/object/ObjectList.h
Log:
trying to fix compiler error on buildserver
Modified: code/branches/core7/src/libraries/core/class/Identifier.h
===================================================================
--- code/branches/core7/src/libraries/core/class/Identifier.h 2015-05-25 09:33:05 UTC (rev 10466)
+++ code/branches/core7/src/libraries/core/class/Identifier.h 2015-05-25 09:50:15 UTC (rev 10467)
@@ -258,7 +258,7 @@
template <class T>
class ClassIdentifier : public Identifier
{
- BOOST_STATIC_ASSERT(boost::is_base_of<Identifiable, T>::value);
+ BOOST_STATIC_ASSERT((boost::is_base_of<Identifiable, T>::value));
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#define SUPER_INTRUSIVE_DECLARATION_INCLUDE
Modified: code/branches/core7/src/libraries/core/object/IteratorBase.h
===================================================================
--- code/branches/core7/src/libraries/core/object/IteratorBase.h 2015-05-25 09:33:05 UTC (rev 10466)
+++ code/branches/core7/src/libraries/core/object/IteratorBase.h 2015-05-25 09:50:15 UTC (rev 10467)
@@ -51,7 +51,7 @@
template <class T, class I>
class IteratorBase : public ObjectListElementRemovalListener
{
- BOOST_STATIC_ASSERT(boost::is_base_of<Listable, T>::value);
+ BOOST_STATIC_ASSERT((boost::is_base_of<Listable, T>::value));
public:
/**
Modified: code/branches/core7/src/libraries/core/object/ObjectList.h
===================================================================
--- code/branches/core7/src/libraries/core/object/ObjectList.h 2015-05-25 09:33:05 UTC (rev 10466)
+++ code/branches/core7/src/libraries/core/object/ObjectList.h 2015-05-25 09:50:15 UTC (rev 10467)
@@ -68,7 +68,7 @@
template <class T>
class ObjectList
{
- BOOST_STATIC_ASSERT(boost::is_base_of<Listable, T>::value);
+ BOOST_STATIC_ASSERT((boost::is_base_of<Listable, T>::value));
public:
typedef ObjectListIterator<T> iterator;
More information about the Orxonox-commit
mailing list