]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
- removed deque helper
authorArvin Schnell <aschnell@suse.de>
Mon, 4 Apr 2011 10:08:43 +0000 (12:08 +0200)
committerArvin Schnell <aschnell@suse.de>
Mon, 4 Apr 2011 10:08:43 +0000 (12:08 +0200)
snapper/SnapperTmpl.h

index baf9b9d60eb54e58a67ca1abce18808685b848a4..52c7fda604e07ee2134a84f9ff43b11845edc252 100644 (file)
@@ -29,7 +29,6 @@
 #include <sstream>
 #include <list>
 #include <map>
-#include <deque>
 #include <iostream>
 
 #include "snapper/AppUtil.h"
@@ -79,19 +78,6 @@ namespace snapper
        return( s );
     }
 
-    template<class Value> std::ostream& operator<<( std::ostream& s, const std::deque<Value>& l )
-    {
-       s << "<";
-       for( typename std::deque<Value>::const_iterator i=l.begin(); i!=l.end(); i++ )
-       {
-           if( i!=l.begin() )
-               s << " ";
-           s << *i;
-       }
-       s << ">";
-       return( s );
-    }
-
     template<class F, class S> std::ostream& operator<<( std::ostream& s, const std::pair<F,S>& p )
     {
        s << "[" << p.first << ":" << p.second << "]";