util/BindMethod: fix indent

This commit is contained in:
Max Kellermann 2023-10-02 21:12:23 +02:00 committed by Max Kellermann
parent 491cc8f54d
commit 19f9238ef0

View File

@ -17,8 +17,8 @@ template<typename S=void()>
class BoundMethod;
template<typename R,
bool NoExcept,
typename... Args>
bool NoExcept,
typename... Args>
class BoundMethod<R(Args...) noexcept(NoExcept)> {
typedef R (*function_pointer)(void *instance, Args... args) noexcept(NoExcept);