refactor: Change wording from NonCopyableOrMovable to NonCopyableAndNonMovable

Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
Filip Hazubski
2025-02-17 11:26:17 +00:00
committed by Compute-Runtime-Automation
parent 28be16771d
commit 4c7900008f
146 changed files with 294 additions and 294 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2024 Intel Corporation
* Copyright (C) 2018-2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -34,7 +34,7 @@ size_t findPos(const std::vector<std::string> &lines, const std::string &whatToF
PRODUCT_FAMILY getProductFamilyFromDeviceName(const std::string &deviceName);
class MessagePrinter : NEO::NonCopyableOrMovableClass {
class MessagePrinter : NEO::NonCopyableAndNonMovableClass {
public:
explicit MessagePrinter() = default;
explicit MessagePrinter(bool suppressMessages) : suppressMessages(suppressMessages) {}