Fixed formatting

This commit is contained in:
Bartek Kryza
2022-12-09 22:12:49 +01:00
parent 69ca8c2d8e
commit 290e1ab0fe
10 changed files with 26 additions and 27 deletions

View File

@@ -4,13 +4,9 @@ namespace clanguml {
namespace t20014 {
template <typename T, typename F> struct C {
F c1(F i, F j) {
return c_.b1(i, j);
}
F c1(F i, F j) { return c_.b1(i, j); }
F c2(F i, F j){
return c_.b2(i, j);
}
F c2(F i, F j) { return c_.b2(i, j); }
T c_;
};