diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-11-27 23:55:23 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-11-27 23:55:23 (GMT) |
commit | 744fca1430b00fb8addc971a6e3029310f4f6f4f (patch) | |
tree | 58f5299e5f4c96b7ba56d67fe6995312bf591ab2 /SwifTools | |
parent | 2e50de4618c1faf97e6a65155255daa1d034b53b (diff) | |
download | swift-contrib-744fca1430b00fb8addc971a6e3029310f4f6f4f.zip swift-contrib-744fca1430b00fb8addc971a6e3029310f4f6f4f.tar.bz2 |
Avoid compiler warning.
Diffstat (limited to 'SwifTools')
-rw-r--r-- | SwifTools/AutoUpdater/PlatformAutoUpdaterFactory.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SwifTools/AutoUpdater/PlatformAutoUpdaterFactory.cpp b/SwifTools/AutoUpdater/PlatformAutoUpdaterFactory.cpp index 2049a4e..90c27bd 100644 --- a/SwifTools/AutoUpdater/PlatformAutoUpdaterFactory.cpp +++ b/SwifTools/AutoUpdater/PlatformAutoUpdaterFactory.cpp @@ -12,6 +12,7 @@ AutoUpdater* PlatformAutoUpdaterFactory::createAutoUpdater(const String& appcast #ifdef HAVE_SPARKLE return new SparkleAutoUpdater(appcastURL); #else + (void) appcastURL; return new DummyAutoUpdater(); #endif } |