summaryrefslogtreecommitdiff
path: root/src/window/window.h
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2023-05-27 19:22:41 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2023-05-27 19:22:41 +0200
commitc6c412af6838e48d333212503fff2e122dd1b677 (patch)
tree7a42f72ffecffe63ba778fa84de5131be2ca2f8d /src/window/window.h
parent4ffe4b85c1ba192463aac46f95d0704c0196b7d2 (diff)
c++: Renamed NamedMember to Member
Diffstat (limited to 'src/window/window.h')
-rw-r--r--src/window/window.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/window/window.h b/src/window/window.h
index a6baae1..716b25d 100644
--- a/src/window/window.h
+++ b/src/window/window.h
@@ -12,11 +12,11 @@
namespace saw {
namespace schema {
using WindowResize = Struct<
- NamedMember<UInt32, "width">,
- NamedMember<UInt32, "height">
+ Member<UInt32, "width">,
+ Member<UInt32, "height">
>;
using WindowEvents = Union<
- NamedMember<WindowResize, "resize">
+ Member<WindowResize, "resize">
>;
}
}