diff --git a/eo/src/eoFunctorStore.cpp b/eo/src/eoFunctorStore.cpp index cb8d1a574..56f7b5d56 100644 --- a/eo/src/eoFunctorStore.cpp +++ b/eo/src/eoFunctorStore.cpp @@ -4,7 +4,6 @@ #endif #include -#include /// clears the memory diff --git a/eo/src/eoFunctorStore.h b/eo/src/eoFunctorStore.h index 02855b47b..18e15ae4e 100644 --- a/eo/src/eoFunctorStore.h +++ b/eo/src/eoFunctorStore.h @@ -59,11 +59,12 @@ public: private : - /// no copying allowed + /** no copying allowed */ eoFunctorStore(const eoFunctorStore&); - /// no copying allowed + /** no assignment allowed */ eoFunctorStore operator=(const eoFunctorStore&); + std::vector vec; };