From cb17f79eef0d161e81ac457e4c1f124405be2a18 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Mon, 4 May 2015 09:05:01 -0600 Subject: qapi: Fix generation of 'size' builtin type We were missing the 'size' builtin type (which means that QAPI using [ 'size' ] would fail to compile). Signed-off-by: Eric Blake Reviewed-by: Markus Armbruster Signed-off-by: Markus Armbruster --- scripts/qapi.py | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/qapi.py b/scripts/qapi.py index 2b5775d2af..d47034760d 100644 --- a/scripts/qapi.py +++ b/scripts/qapi.py @@ -29,6 +29,7 @@ builtin_types = { 'uint16': 'QTYPE_QINT', 'uint32': 'QTYPE_QINT', 'uint64': 'QTYPE_QINT', + 'size': 'QTYPE_QINT', } def error_path(parent): -- cgit v1.2.3