From 74bab529d2cb26b5d9fbf548beca679b792e95e7 Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Fri, 28 Oct 2022 18:41:41 +0200 Subject: [PATCH] test: minor changes --- test/lib/dispatcher/types.h | 4 ++-- test/lib/emitter/types.h | 6 +++--- test/lib/registry/types.h | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/lib/dispatcher/types.h b/test/lib/dispatcher/types.h index d130f4230..59891b173 100644 --- a/test/lib/dispatcher/types.h +++ b/test/lib/dispatcher/types.h @@ -3,10 +3,10 @@ #include -struct ENTT_API message { +struct message { int payload; }; -struct ENTT_API event {}; +struct event {}; #endif diff --git a/test/lib/emitter/types.h b/test/lib/emitter/types.h index ec2c133bf..2ddb1cfd6 100644 --- a/test/lib/emitter/types.h +++ b/test/lib/emitter/types.h @@ -4,13 +4,13 @@ #include #include -struct ENTT_API test_emitter +struct test_emitter : entt::emitter {}; -struct ENTT_API message { +struct message { int payload; }; -struct ENTT_API event {}; +struct event {}; #endif diff --git a/test/lib/registry/types.h b/test/lib/registry/types.h index 6f126a84f..f3fa479dd 100644 --- a/test/lib/registry/types.h +++ b/test/lib/registry/types.h @@ -3,12 +3,12 @@ #include -struct ENTT_API position { +struct position { int x; int y; }; -struct ENTT_API velocity { +struct velocity { double dx; double dy; };