From 530bcb9428dc0e898f3392c3e1eac1947ed77da2 Mon Sep 17 00:00:00 2001 From: Gene Walters Date: Tue, 30 Nov 2021 14:17:02 -0800 Subject: [PATCH] //! for code comments autogen Signed-off-by: Gene Walters --- .../AzFramework/Process/ProcessCommunicatorTracePrinter.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicatorTracePrinter.h b/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicatorTracePrinter.h index 8b84c4c28d..5e14fa290d 100644 --- a/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicatorTracePrinter.h +++ b/Code/Framework/AzFramework/AzFramework/Process/ProcessCommunicatorTracePrinter.h @@ -18,13 +18,13 @@ public: ProcessCommunicatorTracePrinter(AzFramework::ProcessCommunicator* communicator, const char* window); ~ProcessCommunicatorTracePrinter(); - // Call this periodically to drain the buffers and write them. + //! Call this periodically to drain the buffers and write them. void Pump(); - // Drains the buffer into the string that's being built, then traces the string when it hits a newline. + //! Drains the buffer into the string that's being built, then traces the string when it hits a newline. void ParseDataBuffer(AZ::u32 readSize, bool isFromStdErr); - // Prints the current buffer to AZ_Error or AZ_TracePrintf so that it can be picked up by AZ::Debug::Trace + //! Prints the current buffer to AZ_Error or AZ_TracePrintf so that it can be picked up by AZ::Debug::Trace void WriteCurrentString(bool isFromStdError); private: