Move files into standard directory structure.

This commit is contained in:
jzmaddock
2016-06-14 18:37:24 +01:00
parent 87f3be4a8f
commit 3e8b6f5322
16 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
//~ Copyright 2005 Redshift Software, Inc.
//~ Distributed under the Boost Software License, Version 1.0.
//~ (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
#include <boost/static_assert.hpp>
template <int N>
int foo()
{
BOOST_STATIC_ASSERT( N < 2 );
return N;
}
int main()
{
return foo<5>();
}