From ac4798b16c8980f29740f58c675610422991f209 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sun, 11 Feb 2001 19:50:14 +0000 Subject: [PATCH] Final fixes for Borland [SVN r9135] --- iterator_traits_test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/iterator_traits_test.cpp b/iterator_traits_test.cpp index e97d4b9..0762f5c 100644 --- a/iterator_traits_test.cpp +++ b/iterator_traits_test.cpp @@ -7,6 +7,7 @@ // See http://www.boost.org for most recent version including documentation. // Revision History +// 11 Feb 2001 Final fixes for Borland (David Abrahams) // 11 Feb 2001 Some fixes for Borland get it closer on that compiler // (David Abrahams) // 07 Feb 2001 More comprehensive testing; factored out static tests for @@ -26,7 +27,7 @@ #include struct my_iterator - : public boost::forward_iterator_helper + : boost::forward_iterator_helper { my_iterator(const char* p) : m_p(p) {} @@ -39,7 +40,6 @@ struct my_iterator const char* m_p; }; - template struct non_portable_tests @@ -141,7 +141,7 @@ maybe_pointer_test::iterator, int, std::ptrdiff_t, int*, int&, maybe_pointer_test int_pointer_test; -non_pointer_test +non_pointer_test my_iterator_test; int main()