Fix build issues in make_object; fix linkage issues

This commit is contained in:
TuxSH
2018-11-06 16:48:07 +01:00
committed by Michael Scire
parent c47a9931d9
commit 504c74bc57
5 changed files with 39 additions and 25 deletions

View File

@@ -1,4 +1,11 @@
#include <mesosphere/core/make_object.hpp>
#include <mesosphere/processes/KEvent.hpp>
using namespace mesosphere;
int main(void) {
auto obj = MakeObjectRaw<KEvent>();
(void)obj;
for(;;);
return 0;
}