mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 13:03:17 +01:00
UniValue: export NullUniValue global constant
This commit is contained in:
parent
efc7883772
commit
5e3060c0d1
@ -9,7 +9,7 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
static const UniValue nullValue;
|
||||
const UniValue NullUniValue;
|
||||
|
||||
void UniValue::clear()
|
||||
{
|
||||
@ -175,11 +175,11 @@ bool UniValue::checkObject(const std::map<std::string,UniValue::VType>& t)
|
||||
const UniValue& UniValue::operator[](const std::string& key) const
|
||||
{
|
||||
if (typ != VOBJ)
|
||||
return nullValue;
|
||||
return NullUniValue;
|
||||
|
||||
int index = findKey(key);
|
||||
if (index < 0)
|
||||
return nullValue;
|
||||
return NullUniValue;
|
||||
|
||||
return values[index];
|
||||
}
|
||||
@ -187,9 +187,9 @@ const UniValue& UniValue::operator[](const std::string& key) const
|
||||
const UniValue& UniValue::operator[](unsigned int index) const
|
||||
{
|
||||
if (typ != VOBJ && typ != VARR)
|
||||
return nullValue;
|
||||
return NullUniValue;
|
||||
if (index >= values.size())
|
||||
return nullValue;
|
||||
return NullUniValue;
|
||||
|
||||
return values[index];
|
||||
}
|
||||
|
@ -152,4 +152,6 @@ extern enum jtokentype getJsonToken(std::string& tokenVal,
|
||||
unsigned int& consumed, const char *raw);
|
||||
extern const char *uvTypeName(UniValue::VType t);
|
||||
|
||||
extern const UniValue NullUniValue;
|
||||
#endif // BITCOIN_UNIVALUE_UNIVALUE_H
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user