Skip to content

Commit 671afac

Browse files
committed
[libc++abi][NFC] Fix typo in comment
1 parent 53ff0da commit 671afac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxxabi/src/cxa_exception.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ struct _LIBCXXABI_HIDDEN __cxa_exception {
3434
// in the beginning of the struct, rather than before unwindHeader.
3535
void *reserve;
3636

37-
// This is a new field to support C++ 0x exception_ptr.
37+
// This is a new field to support C++11 exception_ptr.
3838
// For binary compatibility it is at the start of this
3939
// struct which is prepended to the object thrown in
4040
// __cxa_allocate_exception.
@@ -63,9 +63,9 @@ struct _LIBCXXABI_HIDDEN __cxa_exception {
6363
#endif
6464

6565
#if !defined(__LP64__) && !defined(_WIN64) && !defined(_LIBCXXABI_ARM_EHABI)
66-
// This is a new field to support C++ 0x exception_ptr.
66+
// This is a new field to support C++11 exception_ptr.
6767
// For binary compatibility it is placed where the compiler
68-
// previously adding padded to 64-bit align unwindHeader.
68+
// previously added padding to 64-bit align unwindHeader.
6969
size_t referenceCount;
7070
#endif
7171
_Unwind_Exception unwindHeader;

0 commit comments

Comments
 (0)