From 4d63f8b44ef035225e6e9685a86b0e6d0796a706 Mon Sep 17 00:00:00 2001 From: Teon Banek Date: Thu, 1 Jun 2017 09:23:42 +0200 Subject: [PATCH] Enable AUTOBRIEF for doxygen Summary: Enabling this option will treat first sentence of a documentation comment as a 'brief' description. This removes the need for explicitly typing `@brief` for a *single* sentence. In case of a larger brief paragraph, `@brief` is still required. Reviewers: florijan, mislav.bradac, buda, dgleich, mferencevic Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D418 --- Doxyfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doxyfile b/Doxyfile index 34f3c1905..967365e39 100644 --- a/Doxyfile +++ b/Doxyfile @@ -177,7 +177,7 @@ SHORT_NAMES = NO # description.) # The default value is: NO. -JAVADOC_AUTOBRIEF = NO +JAVADOC_AUTOBRIEF = YES # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first # line (until the first dot) of a Qt-style comment as the brief description. If @@ -185,7 +185,7 @@ JAVADOC_AUTOBRIEF = NO # requiring an explicit \brief command for a brief description.) # The default value is: NO. -QT_AUTOBRIEF = NO +QT_AUTOBRIEF = YES # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a # multi-line C++ special comment block (i.e. a block of //! or /// comments) as