mirror of
https://github.com/boostorg/fusion.git
synced 2025-08-03 14:34:39 +02:00
better namespace discipline, ftag removal
[SVN r35435]
This commit is contained in:
@@ -11,17 +11,20 @@
|
||||
|
||||
#include <boost/mpl/bool.hpp>
|
||||
|
||||
namespace boost { namespace fusion
|
||||
namespace example
|
||||
{
|
||||
struct example_sequence_tag;
|
||||
}
|
||||
|
||||
namespace boost { namespace fusion
|
||||
{
|
||||
namespace extension
|
||||
{
|
||||
template<typename Tag>
|
||||
struct is_view_impl;
|
||||
|
||||
template<>
|
||||
struct is_view_impl<example_sequence_tag>
|
||||
struct is_view_impl<example::example_sequence_tag>
|
||||
: boost::mpl::false_
|
||||
{};
|
||||
}
|
||||
|
Reference in New Issue
Block a user