Skip to content

Commit

Permalink
code hygiene
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravenwater committed Nov 19, 2021
1 parent acb958f commit da18b40
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/areal/api/exceptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ try {

std::string test_suite = "areal arithmetic exceptions ";
std::string test_tag = "exceptions";
bool reportTestCases = false;
// bool reportTestCases = false;
int nrOfFailedTestCases = 0;

std::cout << test_suite << '\n';
Expand Down
4 changes: 2 additions & 2 deletions tests/cfloat/conversion/assignment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ template<typename CfloatConfiguration, typename NativeFloatingPointType = double
int VerifySubnormalReverseSampling(bool reportTestCases = false, bool verbose = false) {
constexpr size_t nbits = CfloatConfiguration::nbits;
constexpr size_t es = CfloatConfiguration::es;
using bt = CfloatConfiguration::BlockType;
using bt = typename CfloatConfiguration::BlockType;
constexpr bool hasSubnormals = CfloatConfiguration::hasSubnormals;
constexpr bool hasSupernormals = CfloatConfiguration::hasSupernormals;
constexpr bool isSaturating = CfloatConfiguration::isSaturating;
Expand Down Expand Up @@ -78,7 +78,7 @@ template<typename CfloatConfiguration, typename NativeFloatingPointType = double
int VerifyReverseSampling(bool reportTestCases = false, bool verbose = false) {
constexpr size_t nbits = CfloatConfiguration::nbits;
constexpr size_t es = CfloatConfiguration::es;
using bt = CfloatConfiguration::BlockType;
using bt = typename CfloatConfiguration::BlockType;
constexpr bool hasSubnormals = CfloatConfiguration::hasSubnormals;
constexpr bool hasSupernormals = CfloatConfiguration::hasSupernormals;
constexpr bool isSaturating = CfloatConfiguration::isSaturating;
Expand Down
2 changes: 1 addition & 1 deletion tests/cfloat/logic/logic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ try {

std::string test_suite = "cfloat<> logic operator validation";
std::string test_tag = "logic";
bool reportTestCases = false;
// bool reportTestCases = false;
int nrOfFailedTestCases = 0;

#if MANUAL_TESTING
Expand Down
2 changes: 1 addition & 1 deletion tests/lns/api/exceptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ try {

std::string test_suite = "lns arithmetic exceptions ";
std::string test_tag = "exceptions";
bool reportTestCases = false;
// bool reportTestCases = false;
int nrOfFailedTestCases = 0;

std::cout << test_suite << '\n';
Expand Down

0 comments on commit da18b40

Please sign in to comment.