mirror of
https://github.com/boostorg/mpl.git
synced 2025-08-03 23:04:33 +02:00
fix operator value_type() to work with enums
[SVN r20262]
This commit is contained in:
@@ -79,7 +79,7 @@ struct AUX_WRAPPER_NAME
|
||||
// functions that return objects of both arithmetic ('int', 'long',
|
||||
// 'double', etc.) and wrapped integral types (for an example, see
|
||||
// "mpl/example/power.cpp")
|
||||
operator AUX_WRAPPER_VALUE_TYPE() const { return this->value; }
|
||||
operator AUX_WRAPPER_VALUE_TYPE() const { return static_cast<AUX_WRAPPER_VALUE_TYPE>(this->value); }
|
||||
};
|
||||
|
||||
#if !defined(BOOST_NO_INCLASS_MEMBER_INITIALIZATION)
|
||||
|
Reference in New Issue
Block a user