summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testing/067/067__using_8cpp.xml32
-rw-r--r--testing/067_using.cpp7
-rw-r--r--testing/068/068__typed__enum_8cpp.xml25
-rw-r--r--testing/068_typed_enum.cpp7
4 files changed, 0 insertions, 71 deletions
diff --git a/testing/067/067__using_8cpp.xml b/testing/067/067__using_8cpp.xml
deleted file mode 100644
index c278161..0000000
--- a/testing/067/067__using_8cpp.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="">
- <compounddef id="067__using_8cpp" kind="file" language="C++">
- <compoundname>067_using.cpp</compoundname>
- <sectiondef kind="typedef">
- <memberdef kind="typedef" id="067__using_8cpp_1a1b01c504448c96cd2191a5184dd31acf" prot="public" static="no">
- <templateparamlist>
- <param>
- <type>class T</type>
- </param>
- </templateparamlist>
- <type>std::vector&lt; T &gt;</type>
- <definition>using Vec = std::vector&lt;T&gt;</definition>
- <argsstring/>
- <name>Vec</name>
- <briefdescription>
- <para>A vector. </para>
- </briefdescription>
- <detaileddescription>
- </detaileddescription>
- <inbodydescription>
- </inbodydescription>
- <location file="067_using.cpp" line="7" column="1" bodyfile="067_using.cpp" bodystart="7" bodyend="-1"/>
- </memberdef>
- </sectiondef>
- <briefdescription>
- </briefdescription>
- <detaileddescription>
- </detaileddescription>
- <location file="067_using.cpp"/>
- </compounddef>
-</doxygen>
diff --git a/testing/067_using.cpp b/testing/067_using.cpp
deleted file mode 100644
index eb2f5cc..0000000
--- a/testing/067_using.cpp
+++ /dev/null
@@ -1,7 +0,0 @@
-// objective: test template parameters for a type alias
-// check: 067__using_8cpp.xml
-
-/** \file */
-
-/** @brief A vector */
-template<class T> using Vec = std::vector<T>;
diff --git a/testing/068/068__typed__enum_8cpp.xml b/testing/068/068__typed__enum_8cpp.xml
deleted file mode 100644
index 880bf14..0000000
--- a/testing/068/068__typed__enum_8cpp.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<doxygen xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="compound.xsd" version="">
- <compounddef id="068__typed__enum_8cpp" kind="file" language="C++">
- <compoundname>068_typed_enum.cpp</compoundname>
- <sectiondef kind="enum">
- <memberdef kind="enum" id="068__typed__enum_8cpp_1aa72902e6181db009a6a84502f81612c2" prot="public" static="no" strong="yes">
- <type>unsigned short</type>
- <name>E</name>
- <briefdescription>
- <para>A strongly-typed enum. </para>
- </briefdescription>
- <detaileddescription>
- </detaileddescription>
- <inbodydescription>
- </inbodydescription>
- <location file="068_typed_enum.cpp" line="7" column="1" bodyfile="068_typed_enum.cpp" bodystart="7" bodyend="7"/>
- </memberdef>
- </sectiondef>
- <briefdescription>
- </briefdescription>
- <detaileddescription>
- </detaileddescription>
- <location file="068_typed_enum.cpp"/>
- </compounddef>
-</doxygen>
diff --git a/testing/068_typed_enum.cpp b/testing/068_typed_enum.cpp
deleted file mode 100644
index 44c4123..0000000
--- a/testing/068_typed_enum.cpp
+++ /dev/null
@@ -1,7 +0,0 @@
-// objective: test underlying type and strongness for an enum
-// check: 068__typed__enum_8cpp.xml
-
-/** \file */
-
-/** @brief A strongly-typed enum */
-enum class E: unsigned short {};