summaryrefslogtreecommitdiff
path: root/giscanner
diff options
context:
space:
mode:
Diffstat (limited to 'giscanner')
-rw-r--r--giscanner/scannerlexer.l1
-rw-r--r--giscanner/transformer.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/giscanner/scannerlexer.l b/giscanner/scannerlexer.l
index d3a6017e..4d9657a6 100644
--- a/giscanner/scannerlexer.l
+++ b/giscanner/scannerlexer.l
@@ -183,6 +183,7 @@ stringtext ([^\\\"])|(\\.)
"__volatile" { return VOLATILE; }
"__volatile__" { return VOLATILE; }
"_Bool" { return BASIC_TYPE; }
+"bool" { return BASIC_TYPE; }
"typedef char __static_assert_t".*"\n" { ++lineno; /* Ignore */ }
"__cdecl" { /* Ignore */ }
"__declspec(deprecated(".*"))" { /* Ignore */ }
diff --git a/giscanner/transformer.py b/giscanner/transformer.py
index 1c406e98..a74cb6ba 100644
--- a/giscanner/transformer.py
+++ b/giscanner/transformer.py
@@ -699,7 +699,7 @@ raise ValueError."""
# because of different ABI, but this usually works fine,
# so for backward compatibility lets continue for now:
# https://gitlab.gnome.org/GNOME/gobject-introspection/merge_requests/24#note_92792
- if canonical == '_Bool':
+ if canonical in ('_Bool', 'bool'):
canonical = 'gboolean'
base = canonical