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 f0c709e commit 717112dCopy full SHA for 717112d
tests/basictest.cpp
@@ -509,9 +509,11 @@ bool check_file(std::string file_name) {
509
std::cout << "as raw uint16_t, parsed = " << float16_parsed
510
<< ", expected = " << float16 << std::endl;
511
std::cout << "fesetround: " << round_name(d) << std::endl;
512
- const bool is_ulfjack = file_name.find("ulfjack") != std::string::npos;
513
- if(is_ulfjack) {
514
- std::cout << "This is a known issue with ulfjack's test suite." << std::endl;
+ const bool is_ulfjack =
+ file_name.find("ulfjack") != std::string::npos;
+ if (is_ulfjack) {
515
+ std::cout << "This is a known issue with ulfjack's test suite."
516
+ << std::endl;
517
} else {
518
fesetround(FE_TONEAREST);
519
return false;
0 commit comments