From 2574407afb9dc40122d0d55a6c668adb92a07fbb Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 22 Jun 2021 19:33:02 -0400 Subject: [PATCH] Relocates `MinIntTypeValue` to Numeric. --- InstructionSets/CachingExecutor.hpp | 2 +- InstructionSets/Disassembler.hpp | 2 +- {InstructionSets => Numeric}/Sizes.hpp | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {InstructionSets => Numeric}/Sizes.hpp (100%) diff --git a/InstructionSets/CachingExecutor.hpp b/InstructionSets/CachingExecutor.hpp index 198fc2a7b..bc3204e2b 100644 --- a/InstructionSets/CachingExecutor.hpp +++ b/InstructionSets/CachingExecutor.hpp @@ -9,7 +9,7 @@ #ifndef CachingExecutor_hpp #define CachingExecutor_hpp -#include "Sizes.hpp" +#include "../Numeric/Sizes.hpp" #include #include diff --git a/InstructionSets/Disassembler.hpp b/InstructionSets/Disassembler.hpp index f590b3000..71f88d59e 100644 --- a/InstructionSets/Disassembler.hpp +++ b/InstructionSets/Disassembler.hpp @@ -9,7 +9,7 @@ #ifndef Disassembler_hpp #define Disassembler_hpp -#include "Sizes.hpp" +#include "../Numeric/Sizes.hpp" #include #include diff --git a/InstructionSets/Sizes.hpp b/Numeric/Sizes.hpp similarity index 100% rename from InstructionSets/Sizes.hpp rename to Numeric/Sizes.hpp