MCPcopy Create free account
hub / github.com/RenderKit/embree / SourceLineInfo

Class SourceLineInfo

tutorials/external/catch.hpp:415–434  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

413 };
414
415 struct SourceLineInfo {
416
417 SourceLineInfo() = delete;
418 SourceLineInfo( char const* _file, std::size_t _line ) noexcept
419 : file( _file ),
420 line( _line )
421 {}
422
423 SourceLineInfo( SourceLineInfo const& other ) = default;
424 SourceLineInfo& operator = ( SourceLineInfo const& ) = default;
425 SourceLineInfo( SourceLineInfo&& ) noexcept = default;
426 SourceLineInfo& operator = ( SourceLineInfo&& ) noexcept = default;
427
428 bool empty() const noexcept;
429 bool operator == ( SourceLineInfo const& other ) const noexcept;
430 bool operator < ( SourceLineInfo const& other ) const noexcept;
431
432 char const* file;
433 std::size_t line;
434 };
435
436 std::ostream& operator << ( std::ostream& os, SourceLineInfo const& info );
437

Callers 2

registerTestMethodsFunction · 0.85
RunContextMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected