From 7425663f161b1dde6a27ce1a46978219f01955db Mon Sep 17 00:00:00 2001 From: MadMaurice Date: Tue, 29 Aug 2023 23:16:09 +0200 Subject: [PATCH] Move types.h to misc --- cpu/cpu.h | 2 +- memory/mem_device.h | 2 +- types.h => misc/types.h | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename types.h => misc/types.h (100%) diff --git a/cpu/cpu.h b/cpu/cpu.h index 494ed83..37860a1 100644 --- a/cpu/cpu.h +++ b/cpu/cpu.h @@ -1,6 +1,6 @@ #pragma once -#include "types.h" +#include #include "memory/mem_device.h" diff --git a/memory/mem_device.h b/memory/mem_device.h index 73bdcb0..a72b994 100644 --- a/memory/mem_device.h +++ b/memory/mem_device.h @@ -1,6 +1,6 @@ #pragma once -#include +#include class Range { private: diff --git a/types.h b/misc/types.h similarity index 100% rename from types.h rename to misc/types.h