VScript: fix compiler error on VS2017

Compiler error only happens on VS2017's compiler "*\ found outside comment". Fixed error while also making the comment more clear.
This commit is contained in:
Kawe Mazidjatari 2024-05-31 14:01:11 +02:00
parent 45508847e3
commit d796ed495d

View File

@ -237,8 +237,11 @@ inline SQRESULT (*v_sq_endconsttable)(HSQUIRRELVM v);
inline SQString* (*v_StringTable__Add)(void* a1, const SQChar* str, SQInteger len);
inline void* /*RefTable::RefNode*/ (*v_RefTable__Get)(void* /*RefTable*/ thisp, SQObject* obj, SQHash* mainpos, void*/*RefTable::RefNode**/ prev, bool add);
inline SQBool(*v_RefTable__Release)(void* /*RefTable*/ thisp, SQObject* obj);
// returns: RefTable::RefNode*
// thisp = RefTable*
// prev = RefTable::RefNode*
inline void* (*v_RefTable__Get)(void* thisp, SQObject* obj, SQHash* mainpos, void* prev, bool add);
inline SQBool(*v_RefTable__Release)(void* thisp, SQObject* obj);
///////////////////////////////////////////////////////////////////////////////
class VSquirrelAPI : public IDetour