summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Seaborn <mseaborn@chromium.org>2013-11-30 17:37:21 +0000
committerMark Seaborn <mseaborn@chromium.org>2013-11-30 17:37:21 +0000
commit59d65a824fbd2b6928acbf687be988059ca30ec6 (patch)
tree3524b75a6da4c93df599a0246acfe413e8a309f2
parentd9eb5fc4502578e2d2a4df8c60c46970c36c4046 (diff)
downloadlibcxxabi_35a-59d65a824fbd2b6928acbf687be988059ca30ec6.tar.gz
Fix indentation of fields in __cxa_exception to line up
Align to 8 spaces instead of an inconsistent 9. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@195974 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--src/cxa_exception.hpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/cxa_exception.hpp b/src/cxa_exception.hpp
index 66f05c4..22c4da3 100644
--- a/src/cxa_exception.hpp
+++ b/src/cxa_exception.hpp
@@ -41,19 +41,19 @@ static const uint64_t get_vendor_and_language = 0xFFFFFFFFFFFFFF00; // mask
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__