[PATCH] D78938: Fixing all comparisons for C++20 compilation.
David Stone via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed May 20 23:25:47 PDT 2020
davidstone added inline comments.
Herald added a subscriber: sstefan1.
================
Comment at: llvm/include/llvm/ADT/DirectedGraph.h:97
+ }
+ friend bool operator!=(const NodeType &M, const NodeType &N) { !(M == N); }
----------------
Missing `return`
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78938/new/
https://reviews.llvm.org/D78938
More information about the cfe-commits
mailing list