Renaming No-bounds concept to Unbounded concept.

This commit is contained in:
Kohei Takahashi
2015-06-25 22:42:44 +09:00
parent a31009e73c
commit d29dc277e6
10 changed files with 26 additions and 26 deletions

View File

@@ -36,7 +36,7 @@ namespace boost { namespace fusion
struct associative_tag {};
struct no_bounds_tag {};
struct unbounded_tag {};
namespace extension
{
@@ -111,9 +111,9 @@ namespace boost { namespace fusion
{};
template <typename T>
struct has_no_bounds
struct is_unbounded
: is_base_of<
no_bounds_tag
unbounded_tag
, typename category_of<T>::type>
{};
}