Yerbacon.hpp: Make sure the OpenMP headers are included when they are present
Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
parent
3476d3c642
commit
8706db23b3
|
@ -23,6 +23,10 @@
|
||||||
#error "The current standard library is incomplete"
|
#error "The current standard library is incomplete"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef _OPENMP
|
||||||
|
#include <omp.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#define token_expansion(X) #X
|
#define token_expansion(X) #X
|
||||||
#define make_string(X) token_expansion(X)
|
#define make_string(X) token_expansion(X)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue