mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 17:13:29 +08:00
Fix missing method override annotations
Signed-off-by: Konstanty Misiak <konstanty.misiak@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
fefd2d2429
commit
4126a52dc1
@@ -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();
|
||||
}
|
||||
};
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user