From b189fb945689544d7cd5e400dc27a787f7799a30 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Thu, 7 Jun 2018 18:52:25 +0100 Subject: [PATCH] Fix missing return value in doxygen test --- Doc/Manual/Doxygen.html | 2 +- Examples/test-suite/doxygen_ignore.i | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/Manual/Doxygen.html b/Doc/Manual/Doxygen.html index 842f146d8..1e9bbb977 100644 --- a/Doc/Manual/Doxygen.html +++ b/Doc/Manual/Doxygen.html @@ -281,7 +281,7 @@ For example, you could use @transferfull Command ignored, but anything here is still included. */ -int * Fantastic() { } +int * Fantastic();

diff --git a/Examples/test-suite/doxygen_ignore.i b/Examples/test-suite/doxygen_ignore.i index ce83470b6..8e5449f43 100644 --- a/Examples/test-suite/doxygen_ignore.i +++ b/Examples/test-suite/doxygen_ignore.i @@ -36,6 +36,6 @@ @compileroptions This function must be compiled with /EHa when using MSVC. */ -int * func() { } +int * func() { return 0; } %}