summaryrefslogtreecommitdiff
path: root/view/sharedcache/core/MetadataSerializable.hpp
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-02-17 15:58:11 -0500
committerMason Reed <mason@vector35.com>2025-02-17 21:22:18 -0500
commit4e270c6e76714de97814252fedafb01847adde29 (patch)
tree4db2f1e19321b14a76775e4f027de9b31fece266 /view/sharedcache/core/MetadataSerializable.hpp
parent8e4f68bc6c141bb73ec28aca2cd2e00148750ad7 (diff)
[SharedCache] Remove using namespace statement from headers
Diffstat (limited to 'view/sharedcache/core/MetadataSerializable.hpp')
-rw-r--r--view/sharedcache/core/MetadataSerializable.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/view/sharedcache/core/MetadataSerializable.hpp b/view/sharedcache/core/MetadataSerializable.hpp
index 7b4c5c8c..24d8c3fd 100644
--- a/view/sharedcache/core/MetadataSerializable.hpp
+++ b/view/sharedcache/core/MetadataSerializable.hpp
@@ -45,6 +45,8 @@
#include "../api/sharedcachecore.h"
#include "view/macho/machoview.h"
+using namespace BinaryNinja;
+
namespace SharedCacheCore {
#define MSS(name) context.store(#name, name)
@@ -53,8 +55,6 @@ namespace SharedCacheCore {
#define MSL(name) name = context.load<decltype(name)>(#name)
#define MSL_CAST(name, storedType, type) name = (type)context.load<storedType>(#name)
-using namespace BinaryNinja;
-
struct DeserializationContext;
struct SerializationContext {