hokein marked an inline comment as done.
hokein added inline comments.

================
Comment at: clangd/index/Index.h:45
 
-  operator bool() const { return !FileURI.empty(); }
+  explicit operator bool() const { return !FileURI.empty(); }
+  bool operator==(const SymbolLocation& Loc) const {
----------------
ilya-biryukov wrote:
> Maybe we should go even further and replace this with an `isValid` method? 
> Conversion ops are confusing.
I think making the bool operator explicit is sufficient to avoid the scary 
implicit-conversion problem. 


Repository:
  rCTE Clang Tools Extra

https://reviews.llvm.org/D49657



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to