[Lldb-commits] [PATCH] D100962: [lldb/Utility] Add	SourceLocationSpec class (NFC)
    Med Ismail Bennani via Phabricator via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Fri Apr 23 09:28:04 PDT 2021
    
    
  
mib marked 7 inline comments as done.
mib added inline comments.
================
Comment at: lldb/source/Utility/SourceLocationSpec.cpp:59-61
+bool SourceLocationSpec::operator!=(const SourceLocationSpec &rhs) const {
+  return !(*this == rhs);
+}
----------------
JDevlieghere wrote:
> Isn't this the default implementation of `operator !=`? I think we can probably omit it? 
No, it has to be implemented separately.
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D100962/new/
https://reviews.llvm.org/D100962
    
    
More information about the lldb-commits
mailing list