Fix doxygen in domdec
authorArtem Zhmurov <zhmurov@gmail.com>
Tue, 23 Feb 2021 11:09:57 +0000 (14:09 +0300)
committerArtem Zhmurov <zhmurov@gmail.com>
Tue, 23 Feb 2021 11:09:57 +0000 (14:09 +0300)
e2adf21a8c2ed0f6a8e1e590e3a12a099a6ebe24 was merged before all
Doxygen warnings got fixed. This fixes them.

src/gromacs/domdec/domdec_internal.h

index 99a72e543ad09229ae59ddbda6f7cc1c302fbc92..680515174d538bdde84ec7a920fb282be541a8e5 100644 (file)
@@ -797,15 +797,20 @@ static constexpr double DD_CELL_MARGIN2 = 1.00005;
 /*! \brief With pressure scaling, keep cell sizes 2% above the limit to allow for some scaling */
 static constexpr double DD_PRES_SCALE_MARGIN = 1.02;
 
+/*! \endcond */
+
+//! \internal \brief Reverse topology class
 struct gmx_reverse_top_t
 {
+    //! Constructor
     gmx_reverse_top_t(const gmx_mtop_t& mtop, bool useFreeEnergy, const ReverseTopOptions& reverseTopOptions);
+    //! Destructor
     ~gmx_reverse_top_t();
 
+    //! Private implementation definition
     struct Impl;
+    //! Private implementation declaration
     std::unique_ptr<Impl> impl_;
 };
 
-/*! \endcond */
-
 #endif