File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 39
39
# Build and test latest on Linux using only CMake
40
40
cmake :
41
41
strategy :
42
+ fail-fast : false
42
43
matrix :
43
44
compiler : [clang, gcc]
44
45
include :
@@ -105,6 +106,7 @@ jobs:
105
106
# Build and test many combinations on Linux/OS X using Conan
106
107
conan :
107
108
strategy :
109
+ fail-fast : false
108
110
matrix :
109
111
name : [
110
112
clang-head-libc++, clang-head-libstdc++,
@@ -242,6 +244,7 @@ jobs:
242
244
windows :
243
245
runs-on : windows-2019
244
246
strategy :
247
+ fail-fast : false
245
248
matrix :
246
249
arch : [x86_64, x86]
247
250
include :
Original file line number Diff line number Diff line change @@ -514,11 +514,9 @@ namespace test_used_digits {
514
514
namespace {
515
515
TEST (overflow_integer, pre_increment) // NOLINT
516
516
{
517
- auto a = cnl::overflow_integer<>{ INT_MAX - 1 } ;
517
+ auto a = INT_MAX;
518
518
auto & b = ++a;
519
- static_assert (
520
- std::is_same<decltype (b), cnl::overflow_integer<>&>::value,
521
- " static_integer pre-increment return value" );
519
+ --a;
522
520
ASSERT_EQ (&b, &a) << " static_integer pre-increment return address" ;
523
521
ASSERT_EQ (INT_MAX, b) << " static_integer pre-increment" ;
524
522
}
You can’t perform that action at this time.
0 commit comments