summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Bauer <mail@ulrich-bauer.org>2017-01-04 23:15:13 +0100
committerUlrich Bauer <mail@ulrich-bauer.org>2017-01-04 23:15:56 +0100
commited83287e4221c37916097f64b6f93e06c2c8bbbe (patch)
tree318accf1ffaeb66dd8008f84bc3be9af59a8e78a
parent86d2525533329011fa5b41d5461bd10fe23fdb57 (diff)
inline functions to avoid linker problems
-rw-r--r--include/phat/helpers/misc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/phat/helpers/misc.h b/include/phat/helpers/misc.h
index fb5c07a..3e1ed56 100644
--- a/include/phat/helpers/misc.h
+++ b/include/phat/helpers/misc.h
@@ -64,7 +64,7 @@ namespace phat {
#define omp_get_thread_num() 0
#define omp_get_max_threads() 1
#define omp_get_num_threads() 1
- void omp_set_num_threads( int ) {};
+ inline void omp_set_num_threads( int ) {};
#include <time.h>
#define omp_get_wtime() (float)clock() / (float)CLOCKS_PER_SEC
#endif