[Lldb-commits] [PATCH] D17492: Case sensitive path compare on	Windows breaks breakpoints
    Zachary Turner via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Tue Feb 23 19:41:29 PST 2016
    
    
  
zturner accepted this revision.
zturner added a comment.
This revision is now accepted and ready to land.
Looks good after the fix of the misspelling.  If you want I can fix it for you and commit tomorrow.
I assume you ran the test suite and did not see any new errors?
================
Comment at: source/Host/common/FileSpec.cpp:535
@@ +534,3 @@
+    // case sensitivity of equality test
+    const bool case_sentitive = a.IsCaseSensitive() || b.IsCaseSensitive();
+
----------------
Minor nitpick, you misspelled `case_sensitive` as `case_sentitive`.
http://reviews.llvm.org/D17492
    
    
More information about the lldb-commits
mailing list