From f93ccda0750402b9cb31d372e6b9fdd2fc3c85a4 Mon Sep 17 00:00:00 2001 From: Tianqi Chen Date: Thu, 1 May 2014 10:16:05 -0700 Subject: [PATCH] Update xgboost_omp.h --- utils/xgboost_omp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/xgboost_omp.h b/utils/xgboost_omp.h index 3a8062b7e..ea1e7173c 100644 --- a/utils/xgboost_omp.h +++ b/utils/xgboost_omp.h @@ -10,7 +10,7 @@ #if defined(_OPENMP) #include #else -//#warning "OpenMP is not available, compile to single thread code" +#warning "OpenMP is not available, compile to single thread code" inline int omp_get_thread_num() { return 0; } inline int omp_get_num_threads() { return 1; } inline void omp_set_num_threads(int nthread) {}