Compare commits

..

2 Commits

Author SHA1 Message Date
John Maddock
b89281496e Updated version number, modified static_assert to use BOOST_JOIN rather than it's own version
[SVN r11079]
2001-09-09 10:05:54 +00:00
nobody
9074163b1e This commit was manufactured by cvs2svn to create branch 'split-config'.
[SVN r10742]
2001-08-04 14:31:38 +00:00
3 changed files with 2 additions and 19 deletions

16
Jamfile
View File

@@ -1,16 +0,0 @@
subproject libs/static_assert ;
unit-test static_assert_test : static_assert_test.cpp
: <include>$(BOOST_ROOT) : ;
unit-test static_assert_example_1 : static_assert_example_1.cpp
: <include>$(BOOST_ROOT) : ;
unit-test static_assert_example_2 : static_assert_example_2.cpp
: <include>$(BOOST_ROOT) : ;
unit-test static_assert_example_3 : static_assert_example_3.cpp
: <include>$(BOOST_ROOT) : ;

View File

@@ -10,7 +10,7 @@
#include <cwchar>
#include <boost/static_assert.hpp>
#if !defined(WCHAR_MIN)
#if defined(__BORLANDC__) && !defined(WCHAR_MIN)
#define WCHAR_MIN 0
#endif
@@ -29,4 +29,3 @@ int main()
return 0;
}

View File

@@ -13,7 +13,7 @@
#include <boost/type_traits.hpp>
template <class RandonAccessIterator >
RandonAccessIterator foo(RandonAccessIterator from, RandonAccessIterator)
RandonAccessIterator foo(RandonAccessIterator from, RandonAccessIterator to)
{
// this template can only be used with
// random access iterators...