From 7f5d7a5c5449b884dd5d194775f4147bd6f72d1f Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Fri, 16 Jan 2004 18:40:19 +0000 Subject: [PATCH] removed default constructor from input iterator archetypes [SVN r21784] --- include/boost/concept_archetype.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/boost/concept_archetype.hpp b/include/boost/concept_archetype.hpp index eadaa59..eff3296 100644 --- a/include/boost/concept_archetype.hpp +++ b/include/boost/concept_archetype.hpp @@ -416,7 +416,6 @@ namespace boost { }; typedef const T* pointer; typedef std::ptrdiff_t difference_type; - input_iterator_archetype() { } self& operator=(const self&) { return *this; } bool operator==(const self&) const { return true; } bool operator!=(const self&) const { return true; } @@ -436,7 +435,6 @@ namespace boost { typedef const T& reference; typedef const T* pointer; typedef std::ptrdiff_t difference_type; - input_iterator_archetype_no_proxy() { } self& operator=(const self&) { return *this; } bool operator==(const self&) const { return true; } bool operator!=(const self&) const { return true; }