Clang: fix some warnings
This commit is contained in:
parent
2c056507ce
commit
7fe641f3b3
1 changed files with 3 additions and 3 deletions
|
@ -47,10 +47,10 @@ typedef nasal::Ghost<pkg::PackageRef> NasalPackage;
|
||||||
typedef nasal::Ghost<pkg::CatalogRef> NasalCatalog;
|
typedef nasal::Ghost<pkg::CatalogRef> NasalCatalog;
|
||||||
typedef nasal::Ghost<pkg::InstallRef> NasalInstall;
|
typedef nasal::Ghost<pkg::InstallRef> NasalInstall;
|
||||||
|
|
||||||
const char* OFFICIAL_CATALOG_ID = "org.flightgear.fgaddon.trunk";
|
static const char* OFFICIAL_CATALOG_ID = "org.flightgear.fgaddon.trunk";
|
||||||
|
|
||||||
// fallback URL is used when looking up a version-specific catalog fails
|
// fallback URL is used when looking up a version-specific catalog fails
|
||||||
const char* FALLBACK_CATALOG_URL = "http://mirrors.ibiblio.org/flightgear/ftp/Aircraft-trunk/catalog.xml";
|
static const char* FALLBACK_CATALOG_URL = "http://mirrors.ibiblio.org/flightgear/ftp/Aircraft-trunk/catalog.xml";
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
@ -274,7 +274,7 @@ void FGHTTPClient::postinit()
|
||||||
|
|
||||||
pkg::Root* packageRoot = globals->packageRoot();
|
pkg::Root* packageRoot = globals->packageRoot();
|
||||||
if (packageRoot) {
|
if (packageRoot) {
|
||||||
FGNasalSys* nasalSys = (FGNasalSys*) globals->get_subsystem("nasal");
|
FGNasalSys* nasalSys = globals->get_subsystem<FGNasalSys>();
|
||||||
nasal::Hash nasalGlobals = nasalSys->getGlobals();
|
nasal::Hash nasalGlobals = nasalSys->getGlobals();
|
||||||
nasal::Hash nasalPkg = nasalGlobals.createHash("pkg"); // module
|
nasal::Hash nasalPkg = nasalGlobals.createHash("pkg"); // module
|
||||||
nasalPkg.set("root", packageRoot);
|
nasalPkg.set("root", packageRoot);
|
||||||
|
|
Loading…
Add table
Reference in a new issue