From 2aa3bd3d04e66c80a34e3ee26fe49ffce2cbae7d Mon Sep 17 00:00:00 2001 From: superp00t Date: Mon, 4 Dec 2023 19:15:37 -0500 Subject: [PATCH] fix(util): nest forward declaration of StreamRecord --- src/util/SFile.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/util/SFile.hpp b/src/util/SFile.hpp index 6af92fd..c1afc50 100644 --- a/src/util/SFile.hpp +++ b/src/util/SFile.hpp @@ -9,7 +9,12 @@ class SArchive; struct SOVERLAPPED; struct TASYNCPARAMBLOCK; -class Blizzard::File::StreamRecord; +namespace Blizzard { +namespace File { +class StreamRecord; +}; +}; + class SFile { public: