Constructors
| 134 | public: |
| 135 | // Constructors |
| 136 | json() FL_NOEXCEPT : mValue() {} // Default initialize to nullptr |
| 137 | json(fl::nullptr_t) FL_NOEXCEPT : mValue(fl::make_shared<json_value>(nullptr)) {} |
| 138 | json(bool b) FL_NOEXCEPT : mValue(fl::make_shared<json_value>(b)) {} |
| 139 | json(int i) FL_NOEXCEPT : mValue(fl::make_shared<json_value>(static_cast<i64>(i))) {} |