style: Unify style for all Doxygen comments (#3142)

This commit is contained in:
Ayaz Salikhov
2026-07-13 12:45:05 +01:00
committed by GitHub
parent 52d28f8389
commit 50f9bc2bea
52 changed files with 352 additions and 160 deletions

View File

@@ -2,11 +2,17 @@
#include <xrpl/protocol/jss.h>
/** @brief Helper macro for borrowing from xrpl::jss static (J)son (S)trings. */
/**
* @brief Helper macro for borrowing from xrpl::jss static (J)son (S)trings.
*/
#define JS(x) xrpl::jss::x.cStr()
/** @brief Access the lower case copy of a static (J)son (S)tring. */
/**
* @brief Access the lower case copy of a static (J)son (S)tring.
*/
#define JSL(x) util::toLower(JS(x))
/** @brief Provides access to (SF)ield name (S)trings. */
/**
* @brief Provides access to (SF)ield name (S)trings.
*/
#define SFS(x) xrpl::x.jsonName.cStr()