blob: 861b4aac0f080e39f7f4a0706c15ec3ed7fb2ab4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/include/tuple b/include/tuple
index 1334d04..868b66d 100644
--- a/include/tuple
+++ b/include/tuple
@@ -1608,6 +1608,8 @@ pair<_T1, _T2>::pair(piecewise_construct_t,
: first(_VSTD::forward<_Args1>(_VSTD::get<_I1>( __first_args))...),
second(_VSTD::forward<_Args2>(_VSTD::get<_I2>(__second_args))...)
{
+ (void)__first_args;
+ (void)__second_args;
}
#if _LIBCPP_STD_VER > 14
|