From d53cb0cbc9ab0553bc059c2c24359d952c1ad0c1 Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Wed, 17 Apr 2019 09:49:33 -0700 Subject: [PATCH] doc --- documentation/Doxyfile | 10 +++++----- documentation/Makefile | 5 ++++- src/misc/pv/noDefaultMethods.h | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/documentation/Doxyfile b/documentation/Doxyfile index 172724b..cc95ca9 100644 --- a/documentation/Doxyfile +++ b/documentation/Doxyfile @@ -319,7 +319,7 @@ AUTOLINK_SUPPORT = YES # diagrams that involve STL classes more complete and accurate. # The default value is: NO. -BUILTIN_STL_SUPPORT = YES +BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. @@ -1970,7 +1970,7 @@ SEARCH_INCLUDES = YES # preprocessor. # This tag requires that the tag SEARCH_INCLUDES is set to YES. -INCLUDE_PATH = ../src/misc ../src +INCLUDE_PATH = ../src/misc ../src ../../../include/ # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the @@ -2026,7 +2026,7 @@ SKIP_FUNCTION_MACROS = NO # the path). If a tag file is not located in the directory in which doxygen is # run, you must also specify the path to the tagfile here. -TAGFILES = ../../../base-git/documentation/epics-base.tag +TAGFILES = "libstdc++.tag = http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen" # When a file name is specified after GENERATE_TAGFILE, doxygen will create a # tag file that is based on the input files it reads. See section "Linking to @@ -2045,14 +2045,14 @@ ALLEXTERNALS = NO # listed. # The default value is: YES. -EXTERNAL_GROUPS = YES +EXTERNAL_GROUPS = NO # If the EXTERNAL_PAGES tag is set to YES all external pages will be listed in # the related pages index. If set to NO, only the current project's pages will # be listed. # The default value is: YES. -EXTERNAL_PAGES = YES +EXTERNAL_PAGES = NO # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of 'which perl'). diff --git a/documentation/Makefile b/documentation/Makefile index 1992edf..b524f80 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -3,11 +3,14 @@ all: gen clean: rm -rf doxygen_sqlite3.db html -gen: +gen: libstdc++.tag doxygen commit: gen touch html/.nojekyll ./commit-gh.sh documentation/html/ html/.nojekyll html/*.* html/search/*.* +libstdc++.tag: + wget -O $@ https://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/libstdc++.tag + .PHONY: all clean gen commit diff --git a/src/misc/pv/noDefaultMethods.h b/src/misc/pv/noDefaultMethods.h index b80cc31..a469d65 100644 --- a/src/misc/pv/noDefaultMethods.h +++ b/src/misc/pv/noDefaultMethods.h @@ -28,7 +28,7 @@ public: ... }; - @code + @endcode * * @note This macro contains 'private:'. */