From 09d0f347e807c2cb15726f3f4ff38cdc641d72c9 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Mon, 7 Mar 2022 11:37:35 +0100 Subject: [PATCH] Add .h extension to #include files Using extension-less #include files brought more issues than it was worth. Reverts: dfa34420d9ff29932f1e7d06bb98f1f757373bd5 Signed-off-by: Simon Rozman --- Doxyfile | 6 +++--- include/stdex/{base64 => base64.h} | 0 include/stdex/{hex => hex.h} | 0 include/stdex/{idrec => idrec.h} | 0 include/stdex/{vector_queue => vector_queue.h} | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename include/stdex/{base64 => base64.h} (100%) rename include/stdex/{hex => hex.h} (100%) rename include/stdex/{idrec => idrec.h} (100%) rename include/stdex/{vector_queue => vector_queue.h} (100%) diff --git a/Doxyfile b/Doxyfile index a068d7748..b2fa9b541 100644 --- a/Doxyfile +++ b/Doxyfile @@ -310,7 +310,7 @@ OPTIMIZE_OUTPUT_SLICE = NO # # Note see also the list of default file extension mappings. -EXTENSION_MAPPING = no_extension=C++ +EXTENSION_MAPPING = # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments # according to the Markdown format, which allows for more readable @@ -864,7 +864,7 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = include/stdex +INPUT = # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -893,7 +893,7 @@ INPUT_ENCODING = UTF-8 # comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, # *.vhdl, *.ucf, *.qsf and *.ice. -FILE_PATTERNS = * +FILE_PATTERNS = # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. diff --git a/include/stdex/base64 b/include/stdex/base64.h similarity index 100% rename from include/stdex/base64 rename to include/stdex/base64.h diff --git a/include/stdex/hex b/include/stdex/hex.h similarity index 100% rename from include/stdex/hex rename to include/stdex/hex.h diff --git a/include/stdex/idrec b/include/stdex/idrec.h similarity index 100% rename from include/stdex/idrec rename to include/stdex/idrec.h diff --git a/include/stdex/vector_queue b/include/stdex/vector_queue.h similarity index 100% rename from include/stdex/vector_queue rename to include/stdex/vector_queue.h