[Lldb-commits] [lldb] r255973 - Fix formatting for last commit.

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 17 18:15:25 PST 2015


Author: jingham
Date: Thu Dec 17 20:15:25 2015
New Revision: 255973

URL: http://llvm.org/viewvc/llvm-project?rev=255973&view=rev
Log:
Fix formatting for last commit.

Modified:
    lldb/trunk/source/Target/Language.cpp

Modified: lldb/trunk/source/Target/Language.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/Language.cpp?rev=255973&r1=255972&r2=255973&view=diff
==============================================================================
--- lldb/trunk/source/Target/Language.cpp (original)
+++ lldb/trunk/source/Target/Language.cpp Thu Dec 17 20:15:25 2015
@@ -439,9 +439,9 @@ Language::GetExceptionResolverDescriptio
 void
 Language::GetDefaultExceptionResolverDescription(bool catch_on, bool throw_on, Stream &s)
 {
-       s.Printf ("Exception breakpoint (catch: %s throw: %s)",
-                 catch_on ? "on" : "off",
-                 throw_on ? "on" : "off");
+     s.Printf ("Exception breakpoint (catch: %s throw: %s)",
+               catch_on ? "on" : "off",
+               throw_on ? "on" : "off");
 }
 //----------------------------------------------------------------------
 // Constructor




More information about the lldb-commits mailing list