From 89b9f7782325471cfabdce5d6a458086978e1066 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Mon, 12 Feb 2001 04:55:19 +0000 Subject: [PATCH] obsolete and not needed [SVN r9152] --- iter_adaptor_fail_expected3.cpp | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 iter_adaptor_fail_expected3.cpp diff --git a/iter_adaptor_fail_expected3.cpp b/iter_adaptor_fail_expected3.cpp deleted file mode 100644 index 7833d9b..0000000 --- a/iter_adaptor_fail_expected3.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// Test boost/pending/iterator_adaptors.hpp - -// (C) Copyright Jeremy Siek 1999. Permission to copy, use, modify, -// sell and distribute this software is granted provided this -// copyright notice appears in all copies. This software is provided -// "as is" without express or implied warranty, and with no claim as -// to its suitability for any purpose. - -// See http://www.boost.org for most recent version including documentation. - -// Revision History -// 21 Jan 01 Initial version (Jeremy Siek) - -#include -#include -#include -#include - -class foo { -public: - void bar() { } -}; - -int main() -{ - typedef boost::iterator_adaptor adaptor_type; - - adaptor_type i; - i->bar(); - return 0; -}