diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-05-04 01:43:58 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-05-04 01:43:58 +0000 |
commit | 6081edc9d08555364786407e7c0be116b1332080 (patch) | |
tree | 4b22e1374de9923dc8cdfcea7e31bd8a2ca1469d /libcxx/test/std/thread/thread.mutex | |
parent | a7e1ac58c4413e2fdb70116e8b7cf38f3c183047 (diff) | |
download | bcm5719-llvm-6081edc9d08555364786407e7c0be116b1332080.tar.gz bcm5719-llvm-6081edc9d08555364786407e7c0be116b1332080.zip |
[libcxx] [test] Strip trailing whitespace. NFC.
llvm-svn: 302105
Diffstat (limited to 'libcxx/test/std/thread/thread.mutex')
-rw-r--r-- | libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/mutex.pass.cpp | 2 | ||||
-rw-r--r-- | libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/mutex.pass.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/mutex.pass.cpp b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/mutex.pass.cpp index fffd087ee87..97f9d07c151 100644 --- a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/mutex.pass.cpp +++ b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/mutex.pass.cpp @@ -52,7 +52,7 @@ int main() std::this_thread::sleep_for(ms(250)); m.unlock(); t.join(); - + #ifdef __cpp_deduction_guides std::lock_guard lg(m); static_assert((std::is_same<decltype(lg), std::lock_guard<decltype(m)>>::value), "" ); diff --git a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/mutex.pass.cpp b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/mutex.pass.cpp index ef39bbcc5e8..cdf3ceeb615 100644 --- a/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/mutex.pass.cpp +++ b/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.scoped/mutex.pass.cpp @@ -150,6 +150,6 @@ int main() std::scoped_lock sl{m1, m2, m3}; static_assert((std::is_same<decltype(sl), std::scoped_lock<decltype(m1), decltype(m2), decltype(m3)>>::value), "" ); } - } + } #endif } |