Skip to content

Commit 86d036c

Browse files
committed
reorder be_within members
1 parent c29b01c commit 86d036c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/matchers/numeric/be_within.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ class BeWithin;
88

99
template <typename A, typename E>
1010
class BeWithinHelper {
11-
E tolerance;
1211
Expectation<A>& expectation;
12+
E tolerance;
1313
std::string msg;
1414

1515
public:
@@ -23,8 +23,8 @@ class BeWithinHelper {
2323

2424
template <typename A, typename E>
2525
class BeWithin : public MatcherBase<A, E> {
26-
std::string unit;
2726
E tolerance;
27+
std::string unit;
2828

2929
public:
3030
BeWithin(Expectation<A>& expectation, E tolerance, E value, std::string_view unit)

0 commit comments

Comments
 (0)