Skip to content
Snippets Groups Projects
Commit f280e2b4 authored by Bertrand Bellenot's avatar Bertrand Bellenot
Browse files

Only use the #pragmas if not using Visual Studio

parent ef004ef0
No related branches found
No related tags found
No related merge requests found
#include "ROOT/TThreadExecutor.hxx" #include "ROOT/TThreadExecutor.hxx"
#if defined(__GNUC__) #if !defined(_MSC_VER)
#pragma GCC diagnostic push #pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wshadow" #pragma GCC diagnostic ignored "-Wshadow"
#endif #endif
#include "tbb/tbb.h" #include "tbb/tbb.h"
#if defined(__GNUC__) #if !defined(_MSC_VER)
#pragma GCC diagnostic pop #pragma GCC diagnostic pop
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment