avoid warnings when processing embedded docs with doxygen

This commit is contained in:
Axel Kohlmeyer 2021-03-12 11:44:34 -05:00
parent b9028a07bf
commit 1dd69a3c00
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 3 additions and 3 deletions

View File

@ -67,14 +67,14 @@ namespace LAMMPS_NS {
/*! get dimension of reference
*
* This will return either 0, 1, 2 depending on whether the
* reference has no, one or two "[<number>]" postfixes.
* reference has no, one or two "[{number}]" postfixes.
*
* \return integer with the dimensionality of the reference */
int get_dim() const { return dim; }
/*! get index of first dimension
*
* This will return the <number> in the first "[<number>]"
* This will return the number in the first "[{number}]"
* postfix or 0 if there is no postfix.
*
* \return integer with index or the postfix or 0 */
@ -82,7 +82,7 @@ namespace LAMMPS_NS {
/*! get index of second dimension
*
* This will return the <number> in the second "[<number>]"
* This will return the number in the second "[{number}]"
* postfix or -1 if there is no second postfix.
*
* \return integer with index of the postfix or -1 */