From: Arvin Schnell Date: Mon, 4 Apr 2011 10:08:43 +0000 (+0200) Subject: - removed deque helper X-Git-Tag: v0.1.3~427 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=66ed4a734fbe635a2614b4cdc8763dc71f148aee;p=thirdparty%2Fsnapper.git - removed deque helper --- diff --git a/snapper/SnapperTmpl.h b/snapper/SnapperTmpl.h index baf9b9d6..52c7fda6 100644 --- a/snapper/SnapperTmpl.h +++ b/snapper/SnapperTmpl.h @@ -29,7 +29,6 @@ #include #include #include -#include #include #include "snapper/AppUtil.h" @@ -79,19 +78,6 @@ namespace snapper return( s ); } - template std::ostream& operator<<( std::ostream& s, const std::deque& l ) - { - s << "<"; - for( typename std::deque::const_iterator i=l.begin(); i!=l.end(); i++ ) - { - if( i!=l.begin() ) - s << " "; - s << *i; - } - s << ">"; - return( s ); - } - template std::ostream& operator<<( std::ostream& s, const std::pair& p ) { s << "[" << p.first << ":" << p.second << "]";