Stop using NOLINT for setup and teardown methods

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2022-08-17 09:52:55 +00:00
committed by Compute-Runtime-Automation
parent ceb9d81f87
commit d16668300e
5 changed files with 11 additions and 11 deletions

View File

@ -14,8 +14,8 @@ class Device;
class BuiltInFixture {
public:
void SetUp(NEO::Device *pDevice); // NOLINT(readability-identifier-naming)
void TearDown(); // NOLINT(readability-identifier-naming)
void setUp(NEO::Device *pDevice);
void tearDown();
NEO::BuiltIns *pBuiltIns = nullptr;
};