blob: 4219cd56a468cb5388b01dbd5828a85075e50264 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <float.h>
#include "base/safe_numerics.h"
using base::internal::IsValidNumericCast;
#if defined(NCTEST_NO_FLOATING_POINT_1) // [r"size of array is negative"]
void WontCompile() {
IsValidNumericCast<float>(0.0);
}
#elif defined(NCTEST_NO_FLOATING_POINT_2) // [r"size of array is negative"]
void WontCompile() {
IsValidNumericCast<double>(0.0f);
}
#elif defined(NCTEST_NO_FLOATING_POINT_3) // [r"size of array is negative"]
void WontCompile() {
IsValidNumericCast<int>(DBL_MAX);
}
#endif
|