| 7 | |
| 8 | namespace CesiumUtility { |
| 9 | JsonValue* ExtensibleObject::getGenericExtension( |
| 10 | const std::string& extensionName) noexcept { |
| 11 | return const_cast<JsonValue*>( |
| 12 | std::as_const(*this).getGenericExtension(extensionName)); |
| 13 | } |
| 14 | |
| 15 | const JsonValue* ExtensibleObject::getGenericExtension( |
| 16 | const std::string& extensionName) const noexcept { |
no test coverage detected