Skip to content

Commit 5cb9c3f

Browse files
author
Tim Ebbeke
committed
removed unneeded boost pp comma
1 parent d468cb9 commit 5cb9c3f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/interval_tests.hpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#pragma once
22

3-
#include <boost/preprocessor/comma.hpp>
4-
53
#include <limits>
64

75
class IntervalTests
@@ -30,13 +28,13 @@ class DistanceTests
3028
{
3129
public:
3230
using types = IntervalTypes <int>;
33-
};
31+
};
3432

3533
TEST_F(IntervalTests, FailBadBorders)
3634
{
3735
auto f = []()
3836
{
39-
[[maybe_unused]] auto ival = types::interval_type{1 BOOST_PP_COMMA() 0};
37+
[[maybe_unused]] auto ival = types::interval_type{1, 0};
4038
};
4139

4240
EXPECT_DEATH(f(), "low <= high");

0 commit comments

Comments
 (0)