summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-04-30 21:52:29 +0000
committerAndrei Karas <akaras@inbox.ru>2018-04-30 21:56:50 +0300
commitfcfc0bfbcc57c09f0f20e77dc0dee335ae736135 (patch)
treea96de85a85dd8f964771c68c94241f5c62b1748c /src/utils
parenta946678bc7f37475ecef5b4282a77bc4e0f1afa7 (diff)
downloadplus-fcfc0bfbcc57c09f0f20e77dc0dee335ae736135.tar.gz
plus-fcfc0bfbcc57c09f0f20e77dc0dee335ae736135.tar.bz2
plus-fcfc0bfbcc57c09f0f20e77dc0dee335ae736135.tar.xz
plus-fcfc0bfbcc57c09f0f20e77dc0dee335ae736135.zip
fix warnings on sunon compilation.
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/process.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/utils/process.cpp b/src/utils/process.cpp
index b669a3a64..ffe56c25e 100644
--- a/src/utils/process.cpp
+++ b/src/utils/process.cpp
@@ -35,9 +35,11 @@ PRAGMA48(GCC diagnostic pop)
#include "debug.h"
-#ifndef __native_client__
+#if defined(WIN32) || defined(__linux__) || \
+ defined(__linux) || defined(__APPLE__)
const int timeOut = 10;
-#endif // __native_client__
+#endif // defined(WIN32) || defined(__linux__) ||
+ // defined(__linux) || defined(__APPLE__)
#ifdef WIN32
@@ -304,7 +306,7 @@ bool openBrowser(std::string url)
return true;
}
#else // OTHER
-bool openBrowser(std::string url)
+bool openBrowser(std::string url A_UNUSED)
{
return false;
}