Skip to content

Commit 3e231f3

Browse files
author
Julia Smerdel
committed
format change
1 parent 59f9298 commit 3e231f3

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/core/include/mp-units/cartesian_tensor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
#pragma once
2424

25-
#include <mp-units/bits/requires_hosted.h>
2625
#include <mp-units/bits/module_macros.h>
26+
#include <mp-units/bits/requires_hosted.h>
2727
#include <mp-units/cartesian_vector.h>
2828
#include <mp-units/framework/customization_points.h>
2929
#include <mp-units/framework/representation_concepts.h>
@@ -209,4 +209,4 @@ struct MP_UNITS_STD_FMT::formatter<mp_units::cartesian_tensor<T, R, C>, Char> :
209209
return out;
210210
}
211211
};
212-
#endif
212+
#endif

src/core/include/mp-units/cartesian_vector.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
#pragma once
2424

25-
#include <mp-units/bits/requires_hosted.h>
2625
#include <mp-units/bits/module_macros.h>
26+
#include <mp-units/bits/requires_hosted.h>
2727
#include <mp-units/framework/customization_points.h>
2828
#include <mp-units/framework/representation_concepts.h>
2929
#include <type_traits>
@@ -271,4 +271,4 @@ struct MP_UNITS_STD_FMT::formatter<mp_units::cartesian_vector<T>, Char> :
271271
return format_to(ctx.out(), "[{}, {}, {}]", vec[0], vec[1], vec[2]);
272272
}
273273
};
274-
#endif
274+
#endif

test/runtime/cartesian_tensor_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,4 +170,4 @@ TEST_CASE("cartesian_tensor — core", "[tensor]")
170170
static_assert(C(0, 0) == 5 && C(0, 1) == 7 && C(0, 2) == 9);
171171
(void)C;
172172
}
173-
}
173+
}

test/runtime/cartesian_vector_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,4 +245,4 @@ TEST_CASE("cartesian_vector", "[vector]")
245245
static_assert(c._coordinates_[0] == 5 && c._coordinates_[1] == 7 && c._coordinates_[2] == 9);
246246
(void)c;
247247
}
248-
}
248+
}

0 commit comments

Comments
 (0)