Modernization + AZStd::function compare fix. (#3680)
* Modernization + small fix. Modernize ( `bool`/`override`/other) code in AzCore, AzFramework, AzQtComponents, AzToolsFramework, etc. Replaced a `bind` or two, use `using` in a few places as well. Fix nullptr comparison of AZStd::function. Signed-off-by: nemerle <96597+nemerle@users.noreply.github.com> * Apply review-based changes Signed-off-by: nemerle <96597+nemerle@users.noreply.github.com>
This commit is contained in:
@@ -14,12 +14,12 @@ struct GridMateTestEnvironment
|
||||
: public AZ::Test::ITestEnvironment
|
||||
, public AZ::Debug::TraceMessageBus::Handler
|
||||
{
|
||||
void SetupEnvironment() override final
|
||||
void SetupEnvironment() final
|
||||
{
|
||||
AZ::AllocatorInstance<AZ::OSAllocator>::Create();
|
||||
BusConnect();
|
||||
}
|
||||
void TeardownEnvironment() override final
|
||||
void TeardownEnvironment() final
|
||||
{
|
||||
BusDisconnect();
|
||||
AZ::AllocatorInstance<AZ::OSAllocator>::Destroy();
|
||||
|
||||
Reference in New Issue
Block a user