git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@315809 91177308-0d34-0410-b5e6-96231b3b80d8
@@ -18,4 +18,5 @@
int main()
{
std::complex<double> d;
+ (void)d;
}
@@ -18,6 +18,7 @@
std::complex<double> cd;
+ (void)cd;
double x = sin(1.0);
(void)x; // to placate scan-build
@@ -14,4 +14,5 @@
@@ -14,6 +14,7 @@
@@ -19,4 +19,5 @@ int main()
using std::experimental::optional;
std::initializer_list<int> list;
+ (void)list;
@@ -16,4 +16,5 @@
std::tuple<int> x(1);
+ (void)x;
@@ -25,6 +25,7 @@ void
test()
std::move_iterator<It> r;
+ (void)r;
@@ -38,6 +39,7 @@ int main()
#if TEST_STD_VER > 14
constexpr std::move_iterator<const char *> it;
+ (void)it;
#endif
std::reverse_iterator<It> r;
@@ -37,6 +38,7 @@ int main()
constexpr std::reverse_iterator<const char *> it;
@@ -32,6 +32,7 @@ template <typename T, bool isTrivial = std::is_trivially_default_constructible_v
struct test_trivial {
void operator ()() const {
constexpr std::istream_iterator<T> it;
};
@@ -50,6 +51,7 @@ int main()
assert(it == T());
#if TEST_STD_VER >= 11
constexpr T it2;
+ (void)it2;
@@ -30,6 +30,7 @@ int main()
@@ -57,5 +57,6 @@ int main()
A test1 = {3, 2, 1};
#if TEST_STD_VER > 11
constexpr B test2 = {3, 2, 1};
+ (void)test2;
#endif // TEST_STD_VER > 11
@@ -55,5 +55,6 @@ int main()
double x = std::sin(0);
((void)x); // Prevent unused warning
@@ -20,10 +20,12 @@ int main()
std::once_flag f;
+ (void)f;
constexpr std::once_flag f;
using std::optional;
@@ -147,6 +147,7 @@ int main()
constexpr std::tuple<Empty> t0{Empty()};
+ (void)t0;
constexpr std::tuple<A, A> t(3, 2);
@@ -102,6 +102,8 @@ int main()
using T = NonDefaultConstructible<>;
T v(42);
std::tuple<T, T> t(v, v);
+ (void)t;
std::tuple<T, T> t2(42, 42);
+ (void)t2;
@@ -49,6 +49,7 @@ int main()
std::tuple<> t;
std::tuple<int> t;
@@ -88,6 +89,7 @@ int main()
constexpr std::tuple<> t;
constexpr std::tuple<int> t;
@@ -17,5 +17,6 @@
std::initializer_list<int> x;