summaryrefslogtreecommitdiff
path: root/src/porting.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/porting.h')
-rw-r--r--src/porting.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/porting.h b/src/porting.h
index 5739b6876..9024570bd 100644
--- a/src/porting.h
+++ b/src/porting.h
@@ -278,13 +278,13 @@ inline void setThreadName(const char* name) {
* to add this feature please create a pull request.
* "setproctitle" doesn't work for threadnames.
*/
-#define setThreadName(a)
+inline void setThreadName(const char* name) {}
#elif defined(_WIN32)
// threadnames are not supported on windows
-#define setThreadName(a)
+inline void setThreadName(const char* name) {}
#else
#warning "Unknown platform for setThreadName support, you wont have threadname support."
-#define setThreadName(a)
+inline void setThreadName(const char* name) {}
#endif
} // namespace porting