1 2 3 4 5 6 7 8 9 10 11
#include <mbgl/util/clip_id.hpp> #include <iostream> namespace mbgl { ::std::ostream& operator<<(::std::ostream& os, const ClipID& rhs) { return os << "mask=" << rhs.mask << ",ref=" << rhs.reference; } } // namespace mbgl