Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Travis math testing #75

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions doxygen/test/compound_template_specialization_inner_class/Doxyfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
INPUT = File.h
QUIET = YES
GENERATE_HTML = NO
GENERATE_LATEX = NO
GENERATE_XML = YES
XML_PROGRAMLISTING = NO

##! M_PAGE_FINE_PRINT =
##! M_THEME_COLOR =
##! M_FAVICON =
##! M_LINKS_NAVBAR1 =
##! M_LINKS_NAVBAR2 =
##! M_SEARCH_DISABLED = YES
19 changes: 19 additions & 0 deletions doxygen/test/compound_template_specialization_inner_class/File.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/** @brief A templated structure */
template<class T> struct S {};

/** @brief A templated structure specialization */
template<class T> struct S<T*> {
/** @brief Inner struct */
struct SS {};
};

// template <class T>
// struct S
// {
// };
//
// template <class T>
// struct S<T*>
// {
// struct SS {};
// };

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 53 additions & 0 deletions doxygen/test/contents_custom/math-pre222.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading