Start the process of standardizing the formatting of documentation inside our header files.

This commit is contained in:
2026-02-14 02:14:19 -05:00
parent dd159b064d
commit d046ef8161
11 changed files with 567 additions and 399 deletions

View File

@@ -56,25 +56,25 @@
UENUM(BlueprintType)
enum class ElxBreakToDebuggerThreshold : uint8 {
/* Break on errors. */
/** Break on errors. */
Error,
/* Break on warnings and above. */
/** Break on warnings and above. */
Warning,
/* Break on display messages and above. */
/** Break on display messages and above. */
Display,
/* Break on log messages and above. */
/** Break on log messages and above. */
Log,
/* Break on verbose messages and above. */
/** Break on verbose messages and above. */
Verbose,
/* Break on all messages. */
/** Break on all messages. */
VeryVerbose,
/* Break on fatal errors only (ie, never break -- the process crashes instead). */
/** Break on fatal errors only (ie, never break -- the process crashes instead). */
Fatal,
};