diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:47:26 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:47:26 +0000 |
commit | 51072bd6bf79ef2bc6a922079bff57c31c1effbc (patch) | |
tree | 91a2effbc9e6f80bdbbf9eb70e06c51ad0867ea0 /test/std/input.output/iostreams.base | |
parent | bb5e33f003797b67974a8893f7f2930fc51b8210 (diff) |
Notes
Diffstat (limited to 'test/std/input.output/iostreams.base')
-rw-r--r-- | test/std/input.output/iostreams.base/ios/basic.ios.members/move.pass.cpp | 10 | ||||
-rw-r--r-- | test/std/input.output/iostreams.base/ios/basic.ios.members/narrow.pass.cpp (renamed from test/std/input.output/iostreams.base/ios/basic.ios.members/narow.pass.cpp) | 0 | ||||
-rw-r--r-- | test/std/input.output/iostreams.base/ios/basic.ios.members/swap.pass.cpp | 10 | ||||
-rw-r--r-- | test/std/input.output/iostreams.base/version.pass.cpp | 20 |
4 files changed, 10 insertions, 30 deletions
diff --git a/test/std/input.output/iostreams.base/ios/basic.ios.members/move.pass.cpp b/test/std/input.output/iostreams.base/ios/basic.ios.members/move.pass.cpp index 509b836686c53..0b068e0d4a9f4 100644 --- a/test/std/input.output/iostreams.base/ios/basic.ios.members/move.pass.cpp +++ b/test/std/input.output/iostreams.base/ios/basic.ios.members/move.pass.cpp @@ -41,17 +41,17 @@ bool g1_called = false; bool g2_called = false; bool g3_called = false; -void f1(std::ios_base::event ev, std::ios_base& stream, int index) +void f1(std::ios_base::event, std::ios_base&, int) { f1_called = true; } -void f2(std::ios_base::event ev, std::ios_base& stream, int index) +void f2(std::ios_base::event, std::ios_base&, int) { f2_called = true; } -void g1(std::ios_base::event ev, std::ios_base& stream, int index) +void g1(std::ios_base::event ev, std::ios_base&, int index) { if (ev == std::ios_base::imbue_event) { @@ -60,7 +60,7 @@ void g1(std::ios_base::event ev, std::ios_base& stream, int index) } } -void g2(std::ios_base::event ev, std::ios_base& stream, int index) +void g2(std::ios_base::event ev, std::ios_base&, int index) { if (ev == std::ios_base::imbue_event) { @@ -69,7 +69,7 @@ void g2(std::ios_base::event ev, std::ios_base& stream, int index) } } -void g3(std::ios_base::event ev, std::ios_base& stream, int index) +void g3(std::ios_base::event ev, std::ios_base&, int index) { if (ev == std::ios_base::imbue_event) { diff --git a/test/std/input.output/iostreams.base/ios/basic.ios.members/narow.pass.cpp b/test/std/input.output/iostreams.base/ios/basic.ios.members/narrow.pass.cpp index bf865e68149d4..bf865e68149d4 100644 --- a/test/std/input.output/iostreams.base/ios/basic.ios.members/narow.pass.cpp +++ b/test/std/input.output/iostreams.base/ios/basic.ios.members/narrow.pass.cpp diff --git a/test/std/input.output/iostreams.base/ios/basic.ios.members/swap.pass.cpp b/test/std/input.output/iostreams.base/ios/basic.ios.members/swap.pass.cpp index e44f4b32512c2..2887ca100c99c 100644 --- a/test/std/input.output/iostreams.base/ios/basic.ios.members/swap.pass.cpp +++ b/test/std/input.output/iostreams.base/ios/basic.ios.members/swap.pass.cpp @@ -41,31 +41,31 @@ bool g1_called = false; bool g2_called = false; bool g3_called = false; -void f1(std::ios_base::event ev, std::ios_base& stream, int index) +void f1(std::ios_base::event, std::ios_base&, int index) { assert(index == 4); f1_called = true; } -void f2(std::ios_base::event ev, std::ios_base& stream, int index) +void f2(std::ios_base::event, std::ios_base&, int index) { assert(index == 5); f2_called = true; } -void g1(std::ios_base::event ev, std::ios_base& stream, int index) +void g1(std::ios_base::event, std::ios_base&, int index) { assert(index == 7); g1_called = true; } -void g2(std::ios_base::event ev, std::ios_base& stream, int index) +void g2(std::ios_base::event, std::ios_base&, int index) { assert(index == 8); g2_called = true; } -void g3(std::ios_base::event ev, std::ios_base& stream, int index) +void g3(std::ios_base::event, std::ios_base&, int index) { assert(index == 9); g3_called = true; diff --git a/test/std/input.output/iostreams.base/version.pass.cpp b/test/std/input.output/iostreams.base/version.pass.cpp deleted file mode 100644 index f56846d38b8db..0000000000000 --- a/test/std/input.output/iostreams.base/version.pass.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -// <ios> - -#include <ios> - -#ifndef _LIBCPP_VERSION -#error _LIBCPP_VERSION not defined -#endif - -int main() -{ -} |