mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
make clang-format happy
This commit is contained in:
parent
3e694d6bab
commit
7419457efd
15 changed files with 24 additions and 22 deletions
|
|
@ -13,7 +13,8 @@ template <typename RT, typename... ArgsT> class FunctionRef<RT(ArgsT...)> {
|
|||
public:
|
||||
constexpr FunctionRef() = default;
|
||||
|
||||
template <typename T> requires (!std::is_same_v<std::remove_cvref_t<T>, FunctionRef>)
|
||||
template <typename T>
|
||||
requires(!std::is_same_v<std::remove_cvref_t<T>, FunctionRef>)
|
||||
constexpr FunctionRef(T &&object)
|
||||
requires requires(ArgsT... args) { RT(object(args...)); }
|
||||
: context(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue