testing a change to hopefully fix gcc warnings

This commit is contained in:
amerhifi 2019-05-15 11:53:40 -07:00
parent c43d3de213
commit a779fb54ff

View file

@ -9,21 +9,15 @@
#include "platform.h"
#include <QtGlobal>
#include <qglobal.h>
#ifdef Q_OS_WIN
#if defined(Q_OS_WIN)
#include "WINPlatform.h"
#endif
#ifdef Q_OS_MACOS
#elif defined(Q_OS_MAC)
#include "MACOSPlatform.h"
#endif
#ifdef Q_OS_ANDROID
#elif defined(Q_OS_ANDROID)
#include "AndroidPlatform.h"
#endif
#ifdef Q_OS_LINUX
#elif defined(Q_OS_LINUX)
#include "LinuxPlatform.h"
#endif
@ -32,7 +26,7 @@ using namespace platform;
Instance *_instance;
void platform::create() {
#ifdef Q_OS_WIN
#if defined(Q_OS_WIN)
_instance =new WINInstance();
#elif defined(Q_OS_MAC)
_instance = new MACOSInstance();