From 44b9f507cfd359668a253ac365c574ad02e3cd5f Mon Sep 17 00:00:00 2001 From: Echo J Date: Mon, 4 Nov 2024 16:41:47 +0200 Subject: [PATCH] SilentPatch: Move a header include in SVF This makes sure the fixed-width integer types are included in SVF.h --- SilentPatch/SVF.cpp | 1 - SilentPatch/SVF.h | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SilentPatch/SVF.cpp b/SilentPatch/SVF.cpp index a010e8f..afe424e 100644 --- a/SilentPatch/SVF.cpp +++ b/SilentPatch/SVF.cpp @@ -1,6 +1,5 @@ #include "SVF.h" -#include #include #include diff --git a/SilentPatch/SVF.h b/SilentPatch/SVF.h index 8592268..a30d3eb 100644 --- a/SilentPatch/SVF.h +++ b/SilentPatch/SVF.h @@ -1,5 +1,6 @@ #pragma once +#include #include #include @@ -60,4 +61,4 @@ namespace SVF void RegisterGetModelInfoCB(void*(*func)(const char*, int*)); void MarkModelNamesReady(); -}; \ No newline at end of file +};