diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-02-12 22:54:35 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2018-02-12 22:54:35 +0000 |
commit | 6b1ae9b854bd186c8dab4784d287f38ce61459d2 (patch) | |
tree | cdc0b96afc32b469b6af86c350ebbc0c5912111f /libcxx/test/std/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp | |
parent | 031a00c6607ef823942db1ed4269badd7c50f0ef (diff) | |
download | bcm5719-llvm-6b1ae9b854bd186c8dab4784d287f38ce61459d2.tar.gz bcm5719-llvm-6b1ae9b854bd186c8dab4784d287f38ce61459d2.zip |
[libcxx] [test] Strip trailing whitespace, NFC.
llvm-svn: 324959
Diffstat (limited to 'libcxx/test/std/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp')
-rw-r--r-- | libcxx/test/std/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp b/libcxx/test/std/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp index e338c99fda1..bcf5fb6950b 100644 --- a/libcxx/test/std/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp +++ b/libcxx/test/std/containers/container.adaptors/queue/queue.defn/emplace.pass.cpp @@ -29,7 +29,7 @@ void test_return_type() { typedef typename Queue::container_type Container; typedef typename Container::value_type value_type; typedef decltype(std::declval<Queue>().emplace(std::declval<value_type &>())) queue_return_type; - + #if TEST_STD_VER > 14 typedef decltype(std::declval<Container>().emplace_back(std::declval<value_type>())) container_return_type; static_assert(std::is_same<queue_return_type, container_return_type>::value, ""); @@ -42,7 +42,7 @@ int main() { test_return_type<std::queue<int> > (); test_return_type<std::queue<int, std::list<int> > > (); - + typedef Emplaceable T; std::queue<Emplaceable> q; #if TEST_STD_VER > 14 |