diff options
author | albert-github <albert.tests@gmail.com> | 2018-04-01 17:55:42 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-04-01 17:55:42 (GMT) |
commit | 80ec5521ebee6072f6c43946cb5ef3e812ee777a (patch) | |
tree | 6fd54b22b59ab4a62764d1db86a758faa77b264a | |
parent | 1c3317e72f7845f121009c10add4d209d607ce48 (diff) | |
download | Doxygen-80ec5521ebee6072f6c43946cb5ef3e812ee777a.zip Doxygen-80ec5521ebee6072f6c43946cb5ef3e812ee777a.tar.gz Doxygen-80ec5521ebee6072f6c43946cb5ef3e812ee777a.tar.bz2 |
Test renumbering
The tests numbers 067 and 068 were used twice, test 067 has been renamed to 072 and test 068 has been renamed to 073.
-rw-r--r-- | testing/067/067__using_8cpp.xml | 32 | ||||
-rw-r--r-- | testing/067_using.cpp | 7 | ||||
-rw-r--r-- | testing/068/068__typed__enum_8cpp.xml | 25 | ||||
-rw-r--r-- | testing/068_typed_enum.cpp | 7 |
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< T ></type> - <definition>using Vec = std::vector<T></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 {}; |