Start the process of standardizing the formatting of documentation inside our header files.
This commit is contained in:
@@ -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,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user