We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b547ac7 commit 1f3a079Copy full SHA for 1f3a079
test/simple_continued_fraction_test.cpp
@@ -159,10 +159,9 @@ void test_git_issue_970()
159
}
160
161
// Result is [3; 7, 16]
162
- CHECK_EQUAL(coefs.size(), 3UL);
163
- CHECK_EQUAL(coefs[0], INT64_C(3));
164
- CHECK_EQUAL(coefs[1], INT64_C(7));
165
- CHECK_EQUAL(coefs[2], INT64_C(16));
+ CHECK_EQUAL(coefs[0], static_cast<std::int64_t>(3));
+ CHECK_EQUAL(coefs[1], static_cast<std::int64_t>(7));
+ CHECK_EQUAL(coefs[2], static_cast<std::int64_t>(16));
166
167
168
int main()
0 commit comments