summaryrefslogtreecommitdiffstats
path: root/test/input/RValueReferenceType.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-12-10 14:59:02 (GMT)
committerBrad King <brad.king@kitware.com>2015-12-10 15:03:29 (GMT)
commit2a87046db10851ff1b8e101ecc345657ce663c76 (patch)
tree85d6706fcb763f9f5386a1c780869292e524e824 /test/input/RValueReferenceType.cxx
parent96b5c2d10b2f6712a55be56ad58190ca19707634 (diff)
downloadCastXML-2a87046db10851ff1b8e101ecc345657ce663c76.zip
CastXML-2a87046db10851ff1b8e101ecc345657ce663c76.tar.gz
CastXML-2a87046db10851ff1b8e101ecc345657ce663c76.tar.bz2
Output: Skip Typedef elements that refer to rvalue references
The gccxml output format may contain only C++98 constructs.
Diffstat (limited to 'test/input/RValueReferenceType.cxx')
-rw-r--r--test/input/RValueReferenceType.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/input/RValueReferenceType.cxx b/test/input/RValueReferenceType.cxx
index 44f0232..35f2861 100644
--- a/test/input/RValueReferenceType.cxx
+++ b/test/input/RValueReferenceType.cxx
@@ -1 +1,3 @@
-typedef int&& start;
+namespace start {
+ typedef int&& type;
+}