diff options
author | Brad King <brad.king@kitware.com> | 2015-12-10 15:11:29 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-12-10 15:11:47 (GMT) |
commit | 5a1627d41b70115c7558536be1eb95e493ac12cb (patch) | |
tree | 714c862687b8c550efd96f94fa9a5f3197d30d48 /test/input/TypeAlias.cxx | |
parent | 2a87046db10851ff1b8e101ecc345657ce663c76 (diff) | |
download | CastXML-5a1627d41b70115c7558536be1eb95e493ac12cb.zip CastXML-5a1627d41b70115c7558536be1eb95e493ac12cb.tar.gz CastXML-5a1627d41b70115c7558536be1eb95e493ac12cb.tar.bz2 |
Output: Skip C++11 type alias declarations
The gccxml output format may contain only C++98 constructs.
Diffstat (limited to 'test/input/TypeAlias.cxx')
-rw-r--r-- | test/input/TypeAlias.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/input/TypeAlias.cxx b/test/input/TypeAlias.cxx new file mode 100644 index 0000000..8e5470c --- /dev/null +++ b/test/input/TypeAlias.cxx @@ -0,0 +1,3 @@ +namespace start { + using type = int; +} |