summaryrefslogtreecommitdiff
path: root/boost/date_time/constrained_value.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/date_time/constrained_value.hpp')
-rw-r--r--boost/date_time/constrained_value.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/boost/date_time/constrained_value.hpp b/boost/date_time/constrained_value.hpp
index 910e99a861..b1122d76d8 100644
--- a/boost/date_time/constrained_value.hpp
+++ b/boost/date_time/constrained_value.hpp
@@ -39,7 +39,7 @@ namespace CV {
*
*/
template<class value_policies>
- class constrained_value {
+ class BOOST_SYMBOL_VISIBLE constrained_value {
public:
typedef typename value_policies::value_type value_type;
// typedef except_type exception_type;
@@ -80,9 +80,9 @@ namespace CV {
//! Template to shortcut the constrained_value policy creation process
template<typename rep_type, rep_type min_value,
rep_type max_value, class exception_type>
- class simple_exception_policy
+ class BOOST_SYMBOL_VISIBLE simple_exception_policy
{
- struct exception_wrapper : public exception_type
+ struct BOOST_SYMBOL_VISIBLE exception_wrapper : public exception_type
{
// In order to support throw_exception mechanism in the BOOST_NO_EXCEPTIONS mode,
// we'll have to provide a way to acquire std::exception from the exception being thrown.