From 3ab5f7708e6aa0cb0c90a3d946ee834298a6a15b Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 19 Jan 2002 12:38:14 +0000 Subject: [PATCH] Stripped tabs from source [SVN r12351] --- include/boost/static_assert.hpp | 4 ++-- static_assert_example_2.cpp | 10 +++++----- static_assert_test_fail_8.cpp | 10 +++++----- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/include/boost/static_assert.hpp b/include/boost/static_assert.hpp index 4e2eb68..4ba29d7 100644 --- a/include/boost/static_assert.hpp +++ b/include/boost/static_assert.hpp @@ -8,8 +8,8 @@ /* Revision history: - 02 August 2000 - Initial version. + 02 August 2000 + Initial version. */ #ifndef BOOST_STATIC_ASSERT_HPP diff --git a/static_assert_example_2.cpp b/static_assert_example_2.cpp index 9be3336..7254dc7 100644 --- a/static_assert_example_2.cpp +++ b/static_assert_example_2.cpp @@ -26,11 +26,11 @@ RandomAccessIterator foo(RandomAccessIterator from, RandomAccessIterator to) int main() { - std::deque d; - std::list l; - foo(d.begin(), d.end()); // OK - //foo(l.begin(), l.end()); // error - return 0; + std::deque d; + std::list l; + foo(d.begin(), d.end()); // OK + //foo(l.begin(), l.end()); // error + return 0; } diff --git a/static_assert_test_fail_8.cpp b/static_assert_test_fail_8.cpp index 98cbfe9..e4f5b47 100644 --- a/static_assert_test_fail_8.cpp +++ b/static_assert_test_fail_8.cpp @@ -26,11 +26,11 @@ RandonAccessIterator foo(RandonAccessIterator from, RandonAccessIterator) int main() { - std::deque d; - std::list l; - foo(d.begin(), d.end()); // OK - foo(l.begin(), l.end()); // error - return 0; + std::deque d; + std::list l; + foo(d.begin(), d.end()); // OK + foo(l.begin(), l.end()); // error + return 0; }