Work on making userdata work through extern C entry points
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-06-14 22:21:33 +02:00
parent 2c313791d9
commit 7c345d85e8
22 changed files with 128 additions and 51 deletions

View File

@@ -76,9 +76,9 @@ public:
class StringScriptType : public ScriptType{
bool _isKnownAtBind;
int _hashValue;
uint32_t _hashValue;
public:
explicit StringScriptType(bool knownAtBind, int hashValue): ScriptType(TypeClass::String){
explicit StringScriptType(bool knownAtBind, uint32_t hashValue): ScriptType(TypeClass::String){
_isKnownAtBind = knownAtBind;
_hashValue = hashValue;
}
@@ -87,7 +87,7 @@ public:
return _isKnownAtBind;
}
int GetHashValue(){
uint32_t GetHashValue(){
return _hashValue;
}
};