reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

helper.cpp (261B)


      1 #include "helper.hpp"
      2 
      3 #include <errors.hpp>
      4 #include <path.hpp>
      5 #include <version.hpp>
      6 
      7 std::ostream &operator<<(std::ostream &os, const std::set<Path> &list)
      8 {
      9   os << '{';
     10 
     11   for(const Path &path : list)
     12     os << path << ", ";
     13 
     14   os << '}';
     15 
     16   return os;
     17 }