summaryrefslogtreecommitdiffstats
path: root/test/std/depr
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2016-04-28 03:17:56 +0000
committerEric Fiselier <eric@efcs.ca>2016-04-28 03:17:56 +0000
commitbda804ea25ff0b96f66a80cbf4640a7b8dd886b8 (patch)
treedc3be76ece8b0e5404be205ece1d4ef521653b10 /test/std/depr
parent849c551745a9be4c373c3d705e8e98a444a9d07c (diff)
downloadexternal_libcxx-bda804ea25ff0b96f66a80cbf4640a7b8dd886b8.tar.gz
external_libcxx-bda804ea25ff0b96f66a80cbf4640a7b8dd886b8.tar.bz2
external_libcxx-bda804ea25ff0b96f66a80cbf4640a7b8dd886b8.zip
Remove names of unreferenced parameters. Patch from STL@microsoft.com
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@267852 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/std/depr')
-rw-r--r--test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/custom_alloc.pass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/custom_alloc.pass.cpp b/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/custom_alloc.pass.cpp
index 12a1fb874..e466d50c6 100644
--- a/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/custom_alloc.pass.cpp
+++ b/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/custom_alloc.pass.cpp
@@ -18,7 +18,7 @@
int called = 0;
-void* my_alloc(std::size_t n)
+void* my_alloc(std::size_t)
{
static char buf[10000];
++called;