Fix missing method override annotations

Signed-off-by: Konstanty Misiak <konstanty.misiak@intel.com>
This commit is contained in:
Konstanty Misiak
2021-06-28 10:31:03 +00:00
committed by Compute-Runtime-Automation
parent fefd2d2429
commit 4126a52dc1
2 changed files with 4 additions and 4 deletions

View File

@@ -17,10 +17,10 @@ namespace ult {
class AUBHelloWorldL0 : public AUBFixtureL0,
public ::testing::Test {
protected:
void SetUp() {
void SetUp() override {
AUBFixtureL0::SetUp(NEO::defaultHwInfo.get());
}
void TearDown() {
void TearDown() override {
AUBFixtureL0::TearDown();
}
};

View File

@@ -17,7 +17,7 @@
using namespace NEO;
struct MiAtomicAubFixture : public AUBFixture {
void SetUp() {
void SetUp() override {
AUBFixture::SetUp(nullptr);
auto memoryManager = this->device->getMemoryManager();
@@ -53,7 +53,7 @@ struct MiAtomicAubFixture : public AUBFixture {
streamAllocation->getUnderlyingBufferSize());
}
void TearDown() {
void TearDown() override {
auto memoryManager = this->device->getMemoryManager();
memoryManager->freeGraphicsMemory(streamAllocation);
memoryManager->freeGraphicsMemory(deviceSurface);