dumb compilers build fix
This commit is contained in:
@@ -133,6 +133,9 @@ namespace dynamic {
|
|||||||
Map& put(std::string key, std::unique_ptr<List> value) {
|
Map& put(std::string key, std::unique_ptr<List> value) {
|
||||||
return put(key, List_sptr(value.release()));
|
return put(key, List_sptr(value.release()));
|
||||||
}
|
}
|
||||||
|
Map& put(std::string key, unsigned int value) {
|
||||||
|
return put(key, Value(static_cast<integer_t>(value)));
|
||||||
|
}
|
||||||
Map& put(std::string key, const Value& value);
|
Map& put(std::string key, const Value& value);
|
||||||
|
|
||||||
void remove(const std::string& key);
|
void remove(const std::string& key);
|
||||||
|
|||||||
@@ -317,7 +317,7 @@ public:
|
|||||||
dynamic::Value value = dynamic::NONE;
|
dynamic::Value value = dynamic::NONE;
|
||||||
if (peek() == '~') {
|
if (peek() == '~') {
|
||||||
relative = true;
|
relative = true;
|
||||||
value = 0;
|
value = 0L;
|
||||||
nextChar();
|
nextChar();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user