small edit: removing pragma optimize offs

Signed-off-by: Gene Walters <genewalt@amazon.com>
This commit is contained in:
Gene Walters
2021-11-20 14:58:09 -08:00
parent 02590a1766
commit 0bd86cf0a4
4 changed files with 0 additions and 7 deletions
@@ -8,7 +8,6 @@
#include "ProcessCommunicatorTracePrinter.h"
#pragma optimize("", off) //< remember to place this after the #includes so that you only optimize the code you want
ProcessCommunicatorTracePrinter::ProcessCommunicatorTracePrinter(AzFramework::ProcessCommunicator* communicator, const char* window) :
m_communicator(communicator),
@@ -86,4 +85,3 @@ void ProcessCommunicatorTracePrinter::WriteCurrentString(bool isFromStdErr)
bufferToUse.clear();
}
}
#pragma optimize("", on)