summaryrefslogtreecommitdiff
path: root/2005
diff options
context:
space:
mode:
Diffstat (limited to '2005')
-rw-r--r--2005/i/robert/src/utils/any.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/2005/i/robert/src/utils/any.hh b/2005/i/robert/src/utils/any.hh
index 8a24a06..eabee96 100644
--- a/2005/i/robert/src/utils/any.hh
+++ b/2005/i/robert/src/utils/any.hh
@@ -38,9 +38,9 @@ class any
any (void);
/// Constructor.
template<typename T>
- any (const T &value);
+ explicit any (const T &value);
/// Copy constructor.
- any (const any &other);
+ explicit any (const any &other);
/// Destructor.
~any (void);
/// Swap content between two any objects.