From e6908386ea7fe6c29b0cf4bf40690aab7e436e35 Mon Sep 17 00:00:00 2001 From: Dustin Spicuzza Date: Sat, 30 Sep 2023 16:28:42 -0400 Subject: [PATCH] Add documentation clarifying FundamentalSpecifier --- cxxheaderparser/types.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cxxheaderparser/types.py b/cxxheaderparser/types.py index d1f8f63..1b8765e 100644 --- a/cxxheaderparser/types.py +++ b/cxxheaderparser/types.py @@ -98,7 +98,11 @@ class DecltypeSpecifier: @dataclass class FundamentalSpecifier: """ - A specifier that only contains fundamental types + A specifier that only contains fundamental types. + + Fundamental types include various combinations of the following: unsigned, + signed, short, int, long, float, double, char, bool, char16_t, char32_t, + nullptr_t, wchar_t, void """ name: str