Remove our own atomic type in favor of std::atomic

This commit is contained in:
Twan van Laarhoven
2020-05-07 02:17:14 +02:00
parent e005d47d56
commit 26f35893ae
3 changed files with 13 additions and 124 deletions
+2 -2
View File
@@ -13,6 +13,6 @@
// what a waste of a source file...
AtomicInt Age::new_age(2);
atomic<Age::age_t> Age::new_age(2);
IMPLEMENT_DYNAMIC_ARG(AtomicIntEquiv, last_update_age, 0);
IMPLEMENT_DYNAMIC_ARG(Age::age_t, last_update_age, 0);