aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOleg Gerasimov <ogerasimov@gmail.com>2016-08-13 21:05:49 +0300
committerOleg Gerasimov <ogerasimov@gmail.com>2016-08-20 17:52:09 +0300
commit09c5c313030b5f8f4e882b15f60371ff70bc2ce4 (patch)
treeec3964d22f7e98a9bcfd679fed5aa7dfd7a6a612 /src
parent9d880dbb56bd8ad0d542b12edb0085f3a31029bc (diff)
downloaduGFX-09c5c313030b5f8f4e882b15f60371ff70bc2ce4.tar.gz
uGFX-09c5c313030b5f8f4e882b15f60371ff70bc2ce4.tar.bz2
uGFX-09c5c313030b5f8f4e882b15f60371ff70bc2ce4.zip
Fix clang build warnings
Diffstat (limited to 'src')
-rw-r--r--src/gfx_compilers.h4
-rw-r--r--src/gos/gos_osx.h1
-rw-r--r--src/gos/gos_qt.cpp2
3 files changed, 4 insertions, 3 deletions
diff --git a/src/gfx_compilers.h b/src/gfx_compilers.h
index 31f2ce39..9a8792fc 100644
--- a/src/gfx_compilers.h
+++ b/src/gfx_compilers.h
@@ -335,8 +335,8 @@
#define GFX_COMPILER_TESTED TRUE
#define GFX_COMPILER_VERSION_MAJOR (__clang_major__)
#define GFX_COMPILER_VERSION_MINOR (__clang_minor__)
- #define GFX_COMPILER_VERSION_PATCH (__clang_patchlevel__)
- #define DEPRECATED(msg) __attribute__((deprecated(msg)));
+ #define GFX_COMPILER_VERSION_PATCH (__clang_patchlevel__)
+ #define DEPRECATED(msg) __attribute__((deprecated(msg)))
#elif GFX_COMPILER == GFX_COMPILER_COMEAU
#define GFX_COMPILER_NAME "Comeau C++"
#define GFX_COMPILER_VERSION_MAJOR ((__COMO_VERSION__)/100)
diff --git a/src/gos/gos_osx.h b/src/gos/gos_osx.h
index 44853937..9a8e10d9 100644
--- a/src/gos/gos_osx.h
+++ b/src/gos/gos_osx.h
@@ -13,6 +13,7 @@
#include <sys/types.h>
#include <stdint.h>
#include <pthread.h>
+#include <stdlib.h>
/* Already defined int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, size_t */
diff --git a/src/gos/gos_qt.cpp b/src/gos/gos_qt.cpp
index 1708a478..e3a0f0ca 100644
--- a/src/gos/gos_qt.cpp
+++ b/src/gos/gos_qt.cpp
@@ -7,12 +7,12 @@
#include "../../gfx.h"
+#if GFX_USE_OS_QT
#include <QMutex>
#include <QSemaphore>
#include <QThread>
#include <QElapsedTimer>
-#if GFX_USE_OS_QT
class Thread : public QThread
{