summaryrefslogtreecommitdiffstats
path: root/src/server/PostProcessor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/PostProcessor.hpp')
-rw-r--r--src/server/PostProcessor.hpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/server/PostProcessor.hpp b/src/server/PostProcessor.hpp
index 2bd6036f..f4301f46 100644
--- a/src/server/PostProcessor.hpp
+++ b/src/server/PostProcessor.hpp
@@ -17,8 +17,7 @@
#ifndef INGEN_ENGINE_POSTPROCESSOR_HPP
#define INGEN_ENGINE_POSTPROCESSOR_HPP
-#include "raul/AtomicInt.hpp"
-#include "raul/AtomicPtr.hpp"
+#include <atomic>
#include "types.hpp"
@@ -62,9 +61,9 @@ public:
private:
Engine& _engine;
- Raul::AtomicPtr<Event> _head;
- Raul::AtomicPtr<Event> _tail;
- Raul::AtomicInt _max_time;
+ std::atomic<Event*> _head;
+ std::atomic<Event*> _tail;
+ std::atomic<FrameTime> _max_time;
};
} // namespace Server