CPP-catch
    
    
  
  
  
view release on metacpan or search on metacpan
src/catch.hpp view on Meta::CPAN
        bool empty() const noexcept;
        bool operator == ( SourceLineInfo const& other ) const noexcept;
        bool operator < ( SourceLineInfo const& other ) const noexcept;
        char const* file;
        std::size_t line;
    };
    std::ostream& operator << ( std::ostream& os, SourceLineInfo const& info );
    // Use this in variadic streaming macros to allow
    //    >> +StreamEndStop
    // as well as
    //    >> stuff +StreamEndStop
    struct StreamEndStop {
        std::string operator+() const;
    };
    template<typename T>
    T const& operator + ( T const& value, StreamEndStop ) {
        return value;
    }
( run in 0.829 second using v1.01-cache-2.11-cpan-5dc5da66d9d )