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


================
Comment at: source/Plugins/Language/ObjC/NSException.cpp:161-168
+    static ConstString g___name("name");
+    static ConstString g___reason("reason");
     static ConstString g___userInfo("userInfo");
-    if (name == g___userInfo)
-      return 0;
+    static ConstString g___reserved("reserved");
+    if (name == g___name) return 0;
+    if (name == g___reason) return 1;
+    if (name == g___userInfo) return 2;
----------------
davide wrote:
> can you clang-format this and add a comment? Thanks.
This is already clang-formatted. Added comment.


https://reviews.llvm.org/D43884



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

Reply via email to