summaryrefslogtreecommitdiffstats
path: root/src/corelib/thread/qatomic.h
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2020-07-20 13:59:22 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2020-08-14 10:00:02 +0200
commit94b7a4f9b8d0746dae54b0a1870f119e8b17830d (patch)
tree212d8ae69d07396c5813fc045837c17936c1c8ca /src/corelib/thread/qatomic.h
parent9ee554ac1d1af97e7ad5b4bf78e2779f7d1c405f (diff)
QAtomic*: purge deprecated load() and save() methods
Deprecated in 5.14 in favor of loadRelaxed() and storeRelaxed(). Caught one surviving use of load() in the ios platform plugin. Change-Id: I9518064a948e5d26ccb956490cbb0561bed5d8b5 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/corelib/thread/qatomic.h')
-rw-r--r--src/corelib/thread/qatomic.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/corelib/thread/qatomic.h b/src/corelib/thread/qatomic.h
index aa57ddc610..26000ba7df 100644
--- a/src/corelib/thread/qatomic.h
+++ b/src/corelib/thread/qatomic.h
@@ -84,10 +84,8 @@ public:
}
#ifdef Q_CLANG_QDOC
- T load() const;
T loadRelaxed() const;
T loadAcquire() const;
- void store(T newValue);
void storeRelaxed(T newValue);
void storeRelease(T newValue);
@@ -196,10 +194,8 @@ public:
}
#ifdef Q_QDOC
- T *load() const;
T *loadAcquire() const;
T *loadRelaxed() const;
- void store(T *newValue);
void storeRelaxed(T *newValue);
void storeRelease(T *newValue);