Fixed modules formatting

This commit is contained in:
Bartek Kryza
2023-12-22 21:26:34 +01:00
parent 913ccb6bdf
commit 3671bf9beb
2 changed files with 5 additions and 14 deletions

View File

@@ -6,4 +6,5 @@
+ src/**/*.h + src/**/*.h
+ tests/**/*.cc + tests/**/*.cc
+ tests/**/*.h + tests/**/*.h
+ tests/**/*.cppm
- tests/catch.h - tests/catch.h

View File

@@ -50,13 +50,9 @@ public:
std::shared_ptr<CG> cg() { return {}; } std::shared_ptr<CG> cg() { return {}; }
template <typename T> template <typename T> void ch(std::map<T, std::shared_ptr<CH>> &ch_) { }
void ch(std::map<T, std::shared_ptr<CH>> &ch_)
{
}
template <typename T> template <typename T> std::map<T, std::shared_ptr<CI>> ci(T * /*t*/)
std::map<T, std::shared_ptr<CI>> ci(T * /*t*/)
{ {
return {}; return {};
} }
@@ -68,14 +64,8 @@ void cj(std::unique_ptr<CJ> /*cj_*/) { }
std::unique_ptr<CK> ck() { return {}; } std::unique_ptr<CK> ck() { return {}; }
template <typename T> template <typename T> void cl(std::map<T, std::shared_ptr<CL>> & /*ch_*/) { }
void cl(std::map<T, std::shared_ptr<CL>> & /*ch_*/)
{
}
template <typename T> std::map<T, std::shared_ptr<CM>> cm() template <typename T> std::map<T, std::shared_ptr<CM>> cm() { return {}; }
{
return {};
}
} // namespace clanguml::t30013 } // namespace clanguml::t30013