int is dead, long live long type!
This commit is contained in:
@@ -137,11 +137,11 @@ namespace json11 {
|
||||
}
|
||||
|
||||
static MlValue ivalualize(int value) {
|
||||
return MlValue(value);
|
||||
return MlValue((long)value);
|
||||
}
|
||||
|
||||
static MlValue ivalualize(bool value) {
|
||||
return MlValue(value);
|
||||
return MlValue((long)value);
|
||||
}
|
||||
|
||||
static MlValue ivalualize(const string &value) {
|
||||
|
||||
Reference in New Issue
Block a user