Fix make_object

This commit is contained in:
TuxSH
2018-11-06 17:45:27 +01:00
committed by Michael Scire
parent f72836d72c
commit 6d898acc98
2 changed files with 9 additions and 9 deletions

View File

@@ -4,8 +4,8 @@
using namespace mesosphere;
int main(void) {
auto obj = MakeObjectRaw<KEvent>();
(void)obj;
auto [res, h1, h2] = MakeObjectWithHandle<KEvent>();
(void)res; (void)h1; (void)h2;
for(;;);
return 0;
}