Skip to content

Commit 935ac43

Browse files
authored
[CPU] Remove redundant NOLINT comments in Input node implementation (#30165)
### Tickets: - N/A
1 parent 0867e3a commit 935ac43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugins/intel_cpu/src/nodes/input.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -604,8 +604,8 @@ Input::Input(const MemoryDescPtr& memDesc,
604604

605605
Input::Input(const MemoryPtr& mem, const std::string& name, const std::string& type, const GraphContext::CPtr& context)
606606
: Input(mem->getDesc().getShape(), mem->getDesc().getPrecision(), name, type, context) {
607-
extMemDesc = mem->getDescPtr(); // NOLINT(cppcoreguidelines-prefer-member-initializer) fixed in clang-tidy-18
608-
memoryPtr = mem; // NOLINT(cppcoreguidelines-prefer-member-initializer) fixed in clang-tidy-18
607+
extMemDesc = mem->getDescPtr();
608+
memoryPtr = mem;
609609
constant = Node::ConstantType::Const;
610610
}
611611

0 commit comments

Comments
 (0)