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

@@ -79,19 +79,26 @@ template <typename T, typename... Ts> constexpr bool has_type() noexcept
return (std::is_same_v<T, Ts> || ... || false);
}
struct Public { };
struct Public {
};
struct Protected { };
struct Protected {
};
struct Private { };
struct Private {
};
struct Abstract { };
struct Abstract {
};
struct Static { };
struct Static {
};
struct Const { };
struct Const {
};
struct Default { };
struct Default {
};
struct HasCallWithResultMatcher : ContainsMatcher {
HasCallWithResultMatcher(