Remove redundant using declarations

Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
Filip Hazubski
2022-04-04 16:25:34 +00:00
committed by Compute-Runtime-Automation
parent 95103c3a33
commit f09fd527f1
8 changed files with 5 additions and 59 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2020-2021 Intel Corporation
* Copyright (C) 2020-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -23,7 +23,6 @@ struct CommandListProductFamily : public CommandListCoreFamily<IGFX_GEN9_CORE> {
using CommandListCoreFamily::CommandListCoreFamily;
void programL3(bool isSLMused) override {
using GfxFamily = typename NEO::GfxFamilyMapper<IGFX_GEN9_CORE>::GfxFamily;
NEO::EncodeL3State<GfxFamily>::encode(commandContainer, isSLMused);
}
};