summaryrefslogtreecommitdiff
path: root/platform/glfw/test_writer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/glfw/test_writer.hpp')
-rw-r--r--platform/glfw/test_writer.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/glfw/test_writer.hpp b/platform/glfw/test_writer.hpp
index 8e41e3e49a..881b0d16fa 100644
--- a/platform/glfw/test_writer.hpp
+++ b/platform/glfw/test_writer.hpp
@@ -8,7 +8,7 @@
#include <string>
#include <vector>
-class TestOperation;
+class TestOperationSerializer;
class TestWriter final {
public:
@@ -24,6 +24,6 @@ public:
private:
std::string serialize() const;
- std::vector<std::unique_ptr<TestOperation>> operations;
- std::unique_ptr<TestOperation> initialSize;
+ std::vector<std::unique_ptr<TestOperationSerializer>> operations;
+ std::unique_ptr<TestOperationSerializer> initialSize;
};