From 23c8a5eefcb8ece37857ae999b7532fccbb2293a Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Tue, 31 Mar 2020 21:54:09 -0500 Subject: [PATCH] [nostalgia/core] Remove unused file --- src/nostalgia/core/CMakeLists.txt | 1 - src/nostalgia/core/core.hpp | 1 - src/nostalgia/core/gfx.hpp | 1 - src/nostalgia/core/types.hpp | 15 --------------- 4 files changed, 18 deletions(-) delete mode 100644 src/nostalgia/core/types.hpp diff --git a/src/nostalgia/core/CMakeLists.txt b/src/nostalgia/core/CMakeLists.txt index b7b6e6b3..c2b94caf 100644 --- a/src/nostalgia/core/CMakeLists.txt +++ b/src/nostalgia/core/CMakeLists.txt @@ -28,7 +28,6 @@ install( gfx.hpp media.hpp mem.hpp - types.hpp DESTINATION include/nostalgia/core ) diff --git a/src/nostalgia/core/core.hpp b/src/nostalgia/core/core.hpp index e26200f0..ef4b749b 100644 --- a/src/nostalgia/core/core.hpp +++ b/src/nostalgia/core/core.hpp @@ -13,7 +13,6 @@ #include "consts.hpp" #include "gfx.hpp" #include "media.hpp" -#include "types.hpp" namespace nostalgia::core { diff --git a/src/nostalgia/core/gfx.hpp b/src/nostalgia/core/gfx.hpp index 4dca4184..fdca87d2 100644 --- a/src/nostalgia/core/gfx.hpp +++ b/src/nostalgia/core/gfx.hpp @@ -11,7 +11,6 @@ #include #include "context.hpp" -#include "types.hpp" namespace nostalgia::core { diff --git a/src/nostalgia/core/types.hpp b/src/nostalgia/core/types.hpp deleted file mode 100644 index ab49a7eb..00000000 --- a/src/nostalgia/core/types.hpp +++ /dev/null @@ -1,15 +0,0 @@ -/* - * Copyright 2016 - 2019 gtalent2@gmail.com - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - */ - -#pragma once - -#include - -namespace nostalgia::core { - -}