Skip to content

Commit bdcf46b

Browse files
authored
Fixes operator less than for CallStringCTX (#747)
1 parent c11482c commit bdcf46b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/phasar/DataFlow/Mono/Contexts/CallStringCTX.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ template <typename N, unsigned K> class CallStringCTX {
6565

6666
friend bool operator<(const CallStringCTX<N, K> &Lhs,
6767
const CallStringCTX<N, K> &Rhs) {
68-
return Lhs.cs < Rhs.cs;
68+
return Lhs.CallString < Rhs.CallString;
6969
}
7070

7171
llvm::raw_ostream &print(llvm::raw_ostream &OS) const {

0 commit comments

Comments
 (0)