summaryrefslogtreecommitdiff
path: root/src/window/window.h
diff options
context:
space:
mode:
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">
>;
}
}