style: configure readability-identifier-naming.ClassCase

Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
Artur Harasimiuk
2022-06-02 15:10:04 +00:00
committed by Compute-Runtime-Automation
parent 260838430f
commit 6d43e96dee
118 changed files with 1812 additions and 1805 deletions

View File

@@ -54,7 +54,8 @@ template <typename DerivedClass>
class ReferenceTrackedObject;
template <typename DataType>
class unique_ptr_if_unused : public std::unique_ptr<DataType, void (*)(DataType *)> {
class unique_ptr_if_unused : // NOLINT(readability-identifier-naming)
public std::unique_ptr<DataType, void (*)(DataType *)> {
using DeleterFuncType = void (*)(DataType *);
public: