summaryrefslogtreecommitdiff
path: root/boost/none_t.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/none_t.hpp')
-rw-r--r--boost/none_t.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/boost/none_t.hpp b/boost/none_t.hpp
index 608cb0c354..008f369d1c 100644
--- a/boost/none_t.hpp
+++ b/boost/none_t.hpp
@@ -1,5 +1,5 @@
// Copyright (C) 2003, Fernando Luis Cacciola Carballal.
-// Copyright (C) 2014 Andrzej Krzemienski.
+// Copyright (C) 2014, 2015 Andrzej Krzemienski.
//
// Use, modification, and distribution is subject to the Boost Software
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
@@ -29,7 +29,7 @@ class none_t {};
struct none_t
{
struct init_tag{};
- explicit none_t(init_tag){} // to prevent default constructor
+ explicit none_t(init_tag){} // to disable default constructor
};
#endif // old implementation workarounds
@@ -37,4 +37,3 @@ struct none_t
} // namespace boost
#endif // header guard
-