Changeset 8400 for code/trunk/src/libraries/util
- Timestamp:
- May 4, 2011, 4:49:20 AM (14 years ago)
- Location:
- code/trunk/src/libraries/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/util/Math.cc
r7401 r8400 38 38 #include "MathConvert.h" 39 39 #include "SubString.h" 40 // Do not remove this include, it avoids linker errors.41 #include "mbool.h"42 40 43 41 namespace orxonox -
code/trunk/src/libraries/util/mbool.h
r7401 r8400 56 56 the counter. 57 57 */ 58 struct _UtilExportmbool58 struct mbool 59 59 { 60 60 public: … … 65 65 inline mbool(const mbool& value) 66 66 { this->value_.memory_ = value.value_.memory_; } 67 /// Destructor does nothing but not defining it might create a symbol (class is header only) 68 inline ~mbool() 69 { } 67 70 68 71 /// Assigns a boolean value (and increases the memory value if the value is different to the old value).
Note: See TracChangeset
for help on using the changeset viewer.