summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordufourj2006-02-12 19:06:06 +0000
committerdufourj2006-02-12 19:06:06 +0000
commitf568d27ea5c68d693900cc36a04f975027f52220 (patch)
treec79eec65cdd08bf38b2bc8387d9b6aee8b0e0d18
parentc8d55ad87f77572e68d6afafddef04b225eb008f (diff)
Suppression du explicit pour la compilation sous g++-4
-rw-r--r--i/marvin/src/utils/any.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/i/marvin/src/utils/any.hh b/i/marvin/src/utils/any.hh
index e61f312..d04b263 100644
--- a/i/marvin/src/utils/any.hh
+++ b/i/marvin/src/utils/any.hh
@@ -43,7 +43,7 @@ class any
template<typename T>
explicit any (const T &value);
/// Copy constructor.
- explicit any (const any &other);
+ any (const any &other);
/// Destructor.
~any (void);
/// Swap content between two any objects.