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:
Username404 2023-08-16 19:12:57 +02:00
parent 3476d3c642
commit 8706db23b3
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 4 additions and 0 deletions

View File

@ -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)