From 5ac257de489be07310f9bfa56fa2ecdb7271b9ea Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Wed, 11 Mar 2020 18:55:18 -0500 Subject: [PATCH] [nostalgia/core/userland] Remove mem.cpp --- src/nostalgia/core/userland/CMakeLists.txt | 1 - src/nostalgia/core/userland/mem.cpp | 14 -------------- 2 files changed, 15 deletions(-) delete mode 100644 src/nostalgia/core/userland/mem.cpp diff --git a/src/nostalgia/core/userland/CMakeLists.txt b/src/nostalgia/core/userland/CMakeLists.txt index 9a56db7d..48f8f1ab 100644 --- a/src/nostalgia/core/userland/CMakeLists.txt +++ b/src/nostalgia/core/userland/CMakeLists.txt @@ -1,7 +1,6 @@ add_library( NostalgiaCore-Userspace media.cpp - mem.cpp ) target_link_libraries( diff --git a/src/nostalgia/core/userland/mem.cpp b/src/nostalgia/core/userland/mem.cpp deleted file mode 100644 index 262d2e70..00000000 --- a/src/nostalgia/core/userland/mem.cpp +++ /dev/null @@ -1,14 +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/. - */ - -namespace nostalgia::core { - -void initHeap() { -} - -}