From 4094bcc45a31cd0b19555a6b0bcff863395799d8 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Thu, 25 Oct 2018 10:18:20 +0100 Subject: [PATCH] Fixed some Doxygen parsing errors --- doxygen/Doxyfile | 3 ++- modules/juce_core/files/juce_File.h | 1 + modules/juce_core/files/juce_FileOutputStream.h | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doxygen/Doxyfile b/doxygen/Doxyfile index 84a0fb85d5..1c0b6796d3 100644 --- a/doxygen/Doxyfile +++ b/doxygen/Doxyfile @@ -228,7 +228,8 @@ TAB_SIZE = 4 # "Side Effects:". You can put \n's in the value part of an alias to insert # newlines. -ALIASES = "topictag{1}=\1" \ +ALIASES = "tags{1}=" \ + "topictag{1}=\1" \ "box{1}=
\1
" \ "endbox=
" \ "c_void=@s_code{void}" \ diff --git a/modules/juce_core/files/juce_File.h b/modules/juce_core/files/juce_File.h index 52ef95233f..8a77de12ef 100644 --- a/modules/juce_core/files/juce_File.h +++ b/modules/juce_core/files/juce_File.h @@ -648,6 +648,7 @@ public: output.setPosition (0); output.truncate(); ... + } @endcode @returns a stream that will write to this file (initially positioned at the diff --git a/modules/juce_core/files/juce_FileOutputStream.h b/modules/juce_core/files/juce_FileOutputStream.h index eb73e471e8..60051b7e6d 100644 --- a/modules/juce_core/files/juce_FileOutputStream.h +++ b/modules/juce_core/files/juce_FileOutputStream.h @@ -53,6 +53,7 @@ public: stream.setPosition (0); stream.truncate(); ... + } @endcode