~thopiekar/zypper/libzypp-manual-import

« back to all changes in this revision

Viewing changes to zypp/base/LogTools.h

  • Committer: Thomas-Karl Pietrowski
  • Date: 2015-08-15 15:59:50 UTC
  • Revision ID: thopiekar@googlemail.com-20150815155950-j66qn38efmvn289t
syncing with "changes 15.13.0 (11)"  #9a0aca7e3a21d768491b141a8ae86ef0c3fbc227
* https://github.com/openSUSE/libzypp/commit/9a0aca7e3a21d768491b141a8ae86ef0c3fbc227

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#include <set>
20
20
#include <map>
21
21
 
22
 
#include "zypp/base/Tr1hash.h"
 
22
#include "zypp/base/Hash.h"
23
23
#include "zypp/base/Logger.h"
24
24
#include "zypp/base/Iterator.h"
25
25
#include "zypp/APIConfig.h"
125
125
    { return dumpRange( str, obj.begin(), obj.end() ); }
126
126
 
127
127
  template<class _Tp>
128
 
    std::ostream & operator<<( std::ostream & str, const std::tr1::unordered_set<_Tp> & obj )
 
128
    std::ostream & operator<<( std::ostream & str, const std::unordered_set<_Tp> & obj )
129
129
    { return dumpRange( str, obj.begin(), obj.end() ); }
130
130
 
131
131
  template<class _Tp>
334
334
    { return str << dumpMap( obj ); }
335
335
 
336
336
  template<class _Key, class _Tp>
337
 
    std::ostream & operator<<( std::ostream & str, const std::tr1::unordered_map<_Key, _Tp> & obj )
 
337
    std::ostream & operator<<( std::ostream & str, const std::unordered_map<_Key, _Tp> & obj )
338
338
    { return str << dumpMap( obj ); }
339
339
 
340
340
  template<class _Key, class _Tp>