Skip to content

Commit a610693

Browse files
committed
Committing clang-format changes
1 parent 262e238 commit a610693

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

include/glaze/concepts/container_concepts.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ namespace glz
220220
requires !std::same_as<void, decltype(t.end())>;
221221
requires std::input_iterator<decltype(t.begin())>;
222222
};
223-
223+
224224
template <class T>
225225
concept matrix_t = requires(T matrix) {
226226
matrix.resize(2, 4);

tests/eigen_test/eigen_test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ using namespace ut;
2323

2424
struct test_struct
2525
{
26-
Eigen::Matrix3d d = Eigen::Matrix3d::Identity();
26+
Eigen::Matrix3d d = Eigen::Matrix3d::Identity();
2727
} test_value;
2828

2929
suite matrix3d = [] {
3030
"eigen Matrix3d"_test = [] {
3131
auto result = glz::write_json(test_value.d).value();
3232
expect(result == "[1,0,0,0,1,0,0,0,1]") << result;
33-
33+
3434
static_assert(glz::reflect<test_struct>::size == 1);
3535
static_assert(glz::reflect<test_struct>::keys[0] == "d");
36-
36+
3737
result = glz::write_json(test_value).value();
3838
expect(result == R"({"d":[1,0,0,0,1,0,0,0,1]})") << result;
3939
};

0 commit comments

Comments
 (0)