Skip to content

Commit 34442e3

Browse files
author
Julian LALU
committed
Fix comments
1 parent d253f54 commit 34442e3

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

test/i128/i128_assign.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <core/i128.h>
2-
#include <cmath> // std::isfinite, std::nextafter,std::ldexp
2+
#include <cmath> // std::nextafter,std::ldexp
33
#include <core/math.h>
44

55
GTEST_TEST(i128, assign_i8)

test/i128/i128_constructors.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#include <core/i128.h>
2-
#include <cmath> // std::isfinite, std::nextafter,std::ldexp
2+
#include <cmath> // std::nextafter,std::ldexp
33

4-
// GTEST_TEST(i128, default_constructor)
5-
// {
6-
// i128 v;
7-
// hud_assert_ne(v, 0);
8-
// }
4+
GTEST_TEST(i128, default_constructor)
5+
{
6+
i128 v;
7+
hud_assert_ne(v, 0);
8+
}
99

1010
GTEST_TEST(i128, constructor_init)
1111
{

test/u128/u128_assign.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <core/i128.h>
2-
#include <cmath> // std::isfinite, std::nextafter,std::ldexp
2+
#include <cmath> // std::nextafter,std::ldexp
33
#include <core/math.h>
44

55
GTEST_TEST(u128, assign_i8)

test/u128/u128_constructors.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#include <core/i128.h>
2-
#include <cmath> // std::isfinite, std::nextafter,std::ldexp
2+
#include <cmath> // std::nextafter,std::ldexp
33

4-
// GTEST_TEST(u128, default_constructor)
5-
// {
6-
// u128 v;
7-
// hud_assert_ne(v, 0);
8-
// }
4+
GTEST_TEST(u128, default_constructor)
5+
{
6+
u128 v;
7+
hud_assert_ne(v, 0);
8+
}
99

1010
GTEST_TEST(u128, constructor_init)
1111
{

0 commit comments

Comments
 (0)