Skip to content

Commit 5550fc1

Browse files
committed
fix: syntax error: 'void' should be preceded by ';'
1 parent 789bc56 commit 5550fc1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/dynlibutils/vthook.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ class CVTHookAutoBase<T, METHOD> : public T<R, C*, Args...>
541541
using CBase::CBase;
542542

543543
// Wend4r (Linux): don't allow typeinfo/rtti to be generated for templated C argument.
544-
DYNLIB_FORCE_INLINE void Hook(CVirtualTable pVTable, typename CBase::Function_t &&func) noexcept
544+
void Hook(CVirtualTable pVTable, typename CBase::Function_t &&func) noexcept
545545
{
546546
CBase::Hook(pVTable, GetVirtualIndex<METHOD>(), std::move(func));
547547
}

0 commit comments

Comments
 (0)