1
0
forked from boostorg/bind

Moved the specialization into namespace boost

[SVN r34477]
This commit is contained in:
Peter Dimov
2006-07-07 19:09:16 +00:00
parent bfe10df38a
commit b272145f3e

View File

@@ -43,11 +43,16 @@ template< int I > struct custom_placeholder
{
};
template< int I > struct boost::is_placeholder< custom_placeholder< I > >
namespace boost
{
template< int I > struct is_placeholder< custom_placeholder< I > >
{
enum { value = I };
};
} // namespace boost
int main()
{
int const x1 = 1;