2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

kernel/kernel: Remove unnecessary forward declaration

This is no longer necessary, as ResultVal isn't used anywhere in the
header.
This commit is contained in:
Lioncash 2019-03-24 17:48:52 -04:00
parent 3f74518e19
commit bd7ec1a749

View file

@ -8,9 +8,6 @@
#include <unordered_map>
#include "core/hle/kernel/object.h"
template <typename T>
class ResultVal;
namespace Core {
class System;
}