[libcxxabi] r195974 - Fix indentation of fields in __cxa_exception to line up

Mark Seaborn mseaborn at chromium.org
Sat Nov 30 09:37:22 PST 2013


Author: mseaborn
Date: Sat Nov 30 11:37:21 2013
New Revision: 195974

URL: http://llvm.org/viewvc/llvm-project?rev=195974&view=rev
Log:
Fix indentation of fields in __cxa_exception to line up

Align to 8 spaces instead of an inconsistent 9.

Modified:
    libcxxabi/trunk/src/cxa_exception.hpp

Modified: libcxxabi/trunk/src/cxa_exception.hpp
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/src/cxa_exception.hpp?rev=195974&r1=195973&r2=195974&view=diff
==============================================================================
--- libcxxabi/trunk/src/cxa_exception.hpp (original)
+++ libcxxabi/trunk/src/cxa_exception.hpp Sat Nov 30 11:37:21 2013
@@ -41,19 +41,19 @@ static const uint64_t get_vendor_and_lan
         std::unexpected_handler unexpectedHandler;
         std::terminate_handler  terminateHandler;
         
-         __cxa_exception *nextException;
+        __cxa_exception *nextException;
         
-         int handlerCount;
+        int handlerCount;
     
 #ifdef __ARM_EABI_UNWINDER__
-         __cxa_exception* nextPropagatingException;
-         int propagationCount;
+        __cxa_exception* nextPropagatingException;
+        int propagationCount;
 #else
-         int handlerSwitchValue;
-         const unsigned char *actionRecord;
-         const unsigned char *languageSpecificData;
-         void *catchTemp;
-         void *adjustedPtr;
+        int handlerSwitchValue;
+        const unsigned char *actionRecord;
+        const unsigned char *languageSpecificData;
+        void *catchTemp;
+        void *adjustedPtr;
 #endif
 
 #if !__LP64__





More information about the cfe-commits mailing list