diff --git a/modules/globebrowsing/globebrowsingmodule.cpp b/modules/globebrowsing/globebrowsingmodule.cpp index ffc5aa159b..bdfdd16a6f 100644 --- a/modules/globebrowsing/globebrowsingmodule.cpp +++ b/modules/globebrowsing/globebrowsingmodule.cpp @@ -67,8 +67,8 @@ #include "globebrowsingmodule_lua.inl" namespace { - constexpr const char* _loggerCat = "GlobeBrowsingModule"; - constexpr const char* _factoryName = "TileProvider"; + constexpr const char _loggerCat[] = "GlobeBrowsingModule"; + constexpr const char _factoryName[] = "TileProvider"; constexpr const openspace::properties::Property::PropertyInfo WMSCacheEnabledInfo = { "WMSCacheEnabled", @@ -163,19 +163,19 @@ namespace { struct [[codegen::Dictionary(GlobeBrowsingModule)]] Parameters { // [[codegen::verbatim(WMSCacheEnabledInfo.description)]] std::optional cacheEnabled [[codegen::key("WMSCacheEnabled")]]; - + // [[codegen::verbatim(OfflineModeInfo.description)]] std::optional offlineMode; - + // [[codegen::verbatim(WMSCacheLocationInfo.description)]] std::optional cacheLocation [[codegen::key("WMSCacheLocation")]]; - + // [[codegen::verbatim(WMSCacheSizeInfo.description)]] std::optional wmsCacheSize [[codegen::key("WMSCacheSize")]]; - + // [[codegen::verbatim(TileCacheSizeInfo.description)]] std::optional tileCacheSize; - + // If you know what you are doing and you have WMS caching *disabled* but offline // mode *enabled*, you can set this value to 'true' to silence a warning that you // would otherwise get at startup