Skip to content
Snippets Groups Projects
Commit 5a239b5c authored by Sujin Philip's avatar Sujin Philip Committed by Kitware Robot
Browse files

Merge topic 'fix-pragma-warning-warning'


2a505d9e Fix "#pragma warning" warning in gcc

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Reviewed-by: default avatarDan Lipsa <dan.lipsa@kitware.com>
Merge-request: !327
parents a67ad296 2a505d9e
No related branches found
No related tags found
No related merge requests found
......@@ -73,12 +73,12 @@
#ifndef vtkSMPThreadLocal_h
#define vtkSMPThreadLocal_h
#if _MSC_VER <= 1700
#if defined(_MSC_VER) && _MSC_VER <= 1700
#pragma warning(push)
#pragma warning(disable : 4345)
#endif
#include <tbb/enumerable_thread_specific.h>
#if _MSC_VER <= 1700
#if defined(_MSC_VER) && _MSC_VER <= 1700
#pragma warning(pop)
#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