Skip to content

Commit 90a1d12

Browse files
Update .github/workflows/build.yml
Co-authored-by: Christian Parpart <[email protected]>
1 parent 7d7db48 commit 90a1d12

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
cxx: [17,20]
16+
cxx: [17, 20]
1717
build_type: ["RelWithDebInfo"]
1818
compiler:
1919
[

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# C++ primitive type boxing
22

33
This is a small header-only library for easing primitive type boxing in C++.
4-
Primary goal of the library is to make it easy to avoid code with easily swappable parameters [clang-tidy:bugprone-easily-swappable-parameters](https://clang.llvm.org/extra/clang-tidy/checks/bugprone/easily-swappable-parameters.html?highlight=swappable).
4+
Primary goal of the library is to make it easy to avoid code with easily swappable parameters [clang-tidy:bugprone-easily-swappable-parameters](https://clang.llvm.org/extra/clang-tidy/checks/bugprone/easily-swappable-parameters.html).
55

66
Overview on the topic: [C++ Weekly With Jason Turner](https://www.youtube.com/watch?v=Zq4yYPG7Erc)
77

@@ -18,9 +18,9 @@ This header can be simply copied into a project or used via CMake builtin functi
1818
// Create unique structures
1919
namespace tags { struct Speed{}; struct Permittivity{}; struct Permeability{}; }
2020

21-
using Speed = boxed::boxed<double,tags::Speed>;
22-
using Permittivity = boxed::boxed<double,tags::Permittivity>;
23-
using Permeability = boxed::boxed<double,tags::Permeability>;
21+
using Speed = boxed::boxed<double, tags::Speed>;
22+
using Permittivity = boxed::boxed<double, tags::Permittivity>;
23+
using Permeability = boxed::boxed<double, tags::Permeability>;
2424

2525

2626
int main()

0 commit comments

Comments
 (0)