summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread/qbasicatomic.h
diff options
context:
space:
mode:
authorChristian Ehrlicher <ch.ehrlicher@gmx.de>2020-12-02 17:28:39 +0100
committerChristian Ehrlicher <ch.ehrlicher@gmx.de>2020-12-04 07:04:11 +0100
commit6efe11dd75b4c072e596b3f06f7bf838fea031aa (patch)
tree9c35c9a8fe3f4d269f6519b357c447c6bc3e8701 /src/corelib/thread/qbasicatomic.h
parent57e9d9e38e7cb52011438133dd7cdd749a410d00 (diff)
Remove unneeded qatomic_msvc.h
Since Q_COMPILER_ATOMICS is defined for every supportied MSVC compiler in qcompilerdetection.h, qatomic_msvc.h is not included anymore in qbasicatomic.h and can be removed. Change-Id: I6505da5d5e9f1c3f9a060ad30cabb4b652634aa3 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/thread/qbasicatomic.h')
-rw-r--r--src/corelib/thread/qbasicatomic.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/corelib/thread/qbasicatomic.h b/src/corelib/thread/qbasicatomic.h
index cb62ed2722..52ad2ff369 100644
--- a/src/corelib/thread/qbasicatomic.h
+++ b/src/corelib/thread/qbasicatomic.h
@@ -52,10 +52,6 @@
#elif defined(Q_COMPILER_ATOMICS)
# include <QtCore/qatomic_cxx11.h>
-// We only support one fallback: MSVC, because even on version 2015, it lacks full constexpr support
-#elif defined(Q_CC_MSVC)
-# include <QtCore/qatomic_msvc.h>
-
// No fallback
#else
# error "Qt requires C++11 support"