Fixed 32-bit compile issues
This commit is contained in:
parent
9671e385ce
commit
7565704fdc
32 changed files with 87 additions and 103 deletions
14
lib/json.cpp
14
lib/json.cpp
|
@ -469,12 +469,6 @@ JSON::Value::Value(const char *val){
|
|||
intVal = 0;
|
||||
}
|
||||
|
||||
/// Sets this JSON::Value to the given integer.
|
||||
JSON::Value::Value(long long int val){
|
||||
myType = INTEGER;
|
||||
intVal = val;
|
||||
}
|
||||
|
||||
/// Sets this JSON::Value to the given integer.
|
||||
JSON::Value::Value(uint32_t val){
|
||||
myType = INTEGER;
|
||||
|
@ -654,14 +648,6 @@ JSON::Value &JSON::Value::operator=(const char *rhs){
|
|||
return ((*this) = (std::string)rhs);
|
||||
}
|
||||
|
||||
/// Sets this JSON::Value to the given integer.
|
||||
JSON::Value &JSON::Value::operator=(const long long int &rhs){
|
||||
null();
|
||||
myType = INTEGER;
|
||||
intVal = rhs;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// Sets this JSON::Value to the given integer.
|
||||
JSON::Value &JSON::Value::operator=(const int64_t &rhs){
|
||||
null();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue