diff options
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/opengl/OpenGLHelper.cxx | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/vcl/source/opengl/OpenGLHelper.cxx b/vcl/source/opengl/OpenGLHelper.cxx index 76039a35e09a..1969f016b4e0 100644 --- a/vcl/source/opengl/OpenGLHelper.cxx +++ b/vcl/source/opengl/OpenGLHelper.cxx @@ -818,21 +818,10 @@ namespace { } WatchdogTimings::WatchdogTimings() - : maTimingValues -#if defined _MSC_VER && _MSC_VER <= 1800 - // note: Apple clang's parser segfaults on this - ( -#else - // note: MSVC 2013 can't parse this, error C2797 - { -#endif + : maTimingValues{ {{6, 20} /* 1.5s, 5s */, {20, 120} /* 5s, 30s */, {60, 240} /* 15s, 60s */, {60, 240} /* 15s, 60s */} -#if defined _MSC_VER && _MSC_VER <= 1800 - ) -#else } -#endif , mbRelaxed(false) { } |