From b272145f3eb1d8d85545b6585c463a5cd7f478ca Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 7 Jul 2006 19:09:16 +0000 Subject: [PATCH] Moved the specialization into namespace boost [SVN r34477] --- test/bind_placeholder_test.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/bind_placeholder_test.cpp b/test/bind_placeholder_test.cpp index 90ba2dd..174dd82 100644 --- a/test/bind_placeholder_test.cpp +++ b/test/bind_placeholder_test.cpp @@ -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;