mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- removed bogus token paste operator.
This commit is contained in:
parent
6529931281
commit
5e8c8b80c9
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ protected: \
|
|||
ExportedNatives<cls>(ExportedNatives<cls>&&) = delete;
|
||||
|
||||
#define VMEXPORT_NATIVES_FUNC(func) \
|
||||
template<class ret, class object, class ... args> ret func(void *ptr, args ... arglist) { return static_cast<object *>(ptr)->object::##func(arglist...); }
|
||||
template<class ret, class object, class ... args> ret func(void *ptr, args ... arglist) { return static_cast<object *>(ptr)->object::func(arglist...); }
|
||||
|
||||
#define VMEXPORT_NATIVES_END(cls) };
|
||||
|
||||
|
|
Loading…
Reference in a new issue