Fix tabs in file.

[SVN r21399]
This commit is contained in:
Rene Rivera 2003-12-26 23:26:49 +00:00
parent 4231f774e4
commit 806745f24e
3 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ struct xstring
{ {
template <class It> template <class It>
xstring(It begin, It end, typename xstring(It begin, It end, typename
disable_if<is_arithmetic<It> >::type* = 0) disable_if<is_arithmetic<It> >::type* = 0)
: data(end-begin) {} : data(end-begin) {}
int data; int data;

View File

@ -29,7 +29,7 @@ template <class T>
struct is_int_or_double { struct is_int_or_double {
BOOST_STATIC_CONSTANT(bool, BOOST_STATIC_CONSTANT(bool,
value = (boost::is_same<T, int>::value || value = (boost::is_same<T, int>::value ||
boost::is_same<T, double>::value)); boost::is_same<T, double>::value));
}; };
template <class T> template <class T>

View File

@ -33,7 +33,7 @@ int main() {
ints->push_back(5); ints->push_back(5);
print_range_nl(boost::make_shared_container_iterator(ints->begin(),ints), print_range_nl(boost::make_shared_container_iterator(ints->begin(),ints),
boost::make_shared_container_iterator(ints->end(),ints)); boost::make_shared_container_iterator(ints->end(),ints));
} }