summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/code_set.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-20 17:40:09 +0100
committerLioncash <mathew1800@gmail.com>2019-03-20 18:07:04 +0100
commit1b6bd9d6dff81666d15e193c9589ddb2eb7cbb93 (patch)
tree3e133530a2ba4fe509c084d579bdd186b6525169 /src/core/hle/kernel/code_set.cpp
parentMerge pull request #2264 from lioncash/linker (diff)
downloadyuzu-1b6bd9d6dff81666d15e193c9589ddb2eb7cbb93.tar
yuzu-1b6bd9d6dff81666d15e193c9589ddb2eb7cbb93.tar.gz
yuzu-1b6bd9d6dff81666d15e193c9589ddb2eb7cbb93.tar.bz2
yuzu-1b6bd9d6dff81666d15e193c9589ddb2eb7cbb93.tar.lz
yuzu-1b6bd9d6dff81666d15e193c9589ddb2eb7cbb93.tar.xz
yuzu-1b6bd9d6dff81666d15e193c9589ddb2eb7cbb93.tar.zst
yuzu-1b6bd9d6dff81666d15e193c9589ddb2eb7cbb93.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/code_set.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/hle/kernel/code_set.cpp b/src/core/hle/kernel/code_set.cpp
new file mode 100644
index 000000000..1f434e9af
--- /dev/null
+++ b/src/core/hle/kernel/code_set.cpp
@@ -0,0 +1,12 @@
+// Copyright 2019 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/hle/kernel/code_set.h"
+
+namespace Kernel {
+
+CodeSet::CodeSet() = default;
+CodeSet::~CodeSet() = default;
+
+} // namespace Kernel