MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / operator==

Method operator==

src/backward.h:726–729  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

724 SourceLoc() : line(0), col(0) {}
725
726 bool operator==(const SourceLoc& b) const
727 {
728 return function == b.function && filename == b.filename && line == b.line && col == b.col;
729 }
730
731 bool operator!=(const SourceLoc& b) const { return !(*this == b); }
732 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected