Searched defs:FunctionLocation (Results 1 – 1 of 1) sorted by relevance
25 struct FunctionLocation struct27 std::string name;28 std::string file;30 bool operator==(const FunctionLocation &rhs) const { return name == rhs.name && file == rhs.file; } in operator ==()31 bool operator!=(const FunctionLocation &rhs) const { return !(*this == rhs); } in operator !=()33 struct Hash