[Lldb-commits] [PATCH] D17492: Case sensitive path compare on Windows breaks breakpoints
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Feb 23 03:23:26 PST 2016
labath added a subscriber: labath.
================
Comment at: source/Core/ConstString.cpp:269
@@ +268,3 @@
+bool
+ConstString::Equals (const ConstString& lhs, const ConstString& rhs, const bool case_sensitive)
+{
----------------
zturner wrote:
> Looks like this code also isn't clang-formatted. If you build clang-format (with `ninja clang-format`) and add its folder to your `PATH` environment variable, then when your changes are staged in git, just run `git clang-format`.
>
> If you've already committed you can uncommit with `git reset --soft HEAD`. Then they will be staged again, then you can run `git clang-format`, then re-add all the modified files, and then recommit.
Or, you can use `git clang-format rev` to format all changes since `rev` (you probably want `rev`=`HEAD^`).
</drive-by>
http://reviews.llvm.org/D17492
More information about the lldb-commits
mailing list