diff options
Diffstat (limited to 'Source/WTF/wtf/ThreadFunctionInvocation.h')
-rw-r--r-- | Source/WTF/wtf/ThreadFunctionInvocation.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/WTF/wtf/ThreadFunctionInvocation.h b/Source/WTF/wtf/ThreadFunctionInvocation.h index 2d8599eb9..b9268e95b 100644 --- a/Source/WTF/wtf/ThreadFunctionInvocation.h +++ b/Source/WTF/wtf/ThreadFunctionInvocation.h @@ -34,6 +34,8 @@ namespace WTF { typedef void (*ThreadFunction)(void* argument); struct ThreadFunctionInvocation { + WTF_MAKE_FAST_ALLOCATED; +public: ThreadFunctionInvocation(ThreadFunction function, void* data) : function(function) , data(data) |