Stripped tabs from source

[SVN r12351]
This commit is contained in:
John Maddock
2002-01-19 12:38:14 +00:00
parent 07628a01a7
commit 3ab5f7708e
3 changed files with 12 additions and 12 deletions

View File

@ -26,11 +26,11 @@ RandomAccessIterator foo(RandomAccessIterator from, RandomAccessIterator to)
int main()
{
std::deque<int> d;
std::list<int> l;
foo(d.begin(), d.end()); // OK
//foo(l.begin(), l.end()); // error
return 0;
std::deque<int> d;
std::list<int> l;
foo(d.begin(), d.end()); // OK
//foo(l.begin(), l.end()); // error
return 0;
}