diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-07-29 00:55:10 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-07-29 00:55:10 +0000 |
commit | 4159db7698d3d6aa5e0f2d920be3847716b05800 (patch) | |
tree | 65e739c70519a0767cc27f13f679fcd1b09fc8e4 /libcxx/test/std/language.support/support.exception | |
parent | 8980b8ad9c9a0060698fc448dd9de1e2e1a48447 (diff) | |
download | bcm5719-llvm-4159db7698d3d6aa5e0f2d920be3847716b05800.tar.gz bcm5719-llvm-4159db7698d3d6aa5e0f2d920be3847716b05800.zip |
[libcxx] [test] Untabify, NFC.
llvm-svn: 309464
Diffstat (limited to 'libcxx/test/std/language.support/support.exception')
-rw-r--r-- | libcxx/test/std/language.support/support.exception/except.nested/rethrow_if_nested.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/language.support/support.exception/except.nested/rethrow_if_nested.pass.cpp b/libcxx/test/std/language.support/support.exception/except.nested/rethrow_if_nested.pass.cpp index 88e2253d08c..43a11bab3fd 100644 --- a/libcxx/test/std/language.support/support.exception/except.nested/rethrow_if_nested.pass.cpp +++ b/libcxx/test/std/language.support/support.exception/except.nested/rethrow_if_nested.pass.cpp @@ -46,8 +46,8 @@ public: class C { public: - virtual ~C() {} - C * operator&() const { assert(false); return nullptr; } // should not be called + virtual ~C() {} + C * operator&() const { assert(false); return nullptr; } // should not be called }; class D : private std::nested_exception {}; |