Skip to content

Commit adc04de

Browse files
committed
Replace NOSONAR with NO_CODESONAR
1 parent f39072a commit adc04de

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Os/Cpu.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class CpuInterface {
2727
CpuInterface(const CpuInterface& other) = delete;
2828

2929
//! \brief assignment operator is forbidden
30-
virtual CpuInterface& operator=(const CpuInterface& other) = delete; // NOSONAR (cpp:S3657)
30+
virtual CpuInterface& operator=(const CpuInterface& other) = delete; // NO_CODESONAR (cpp:S3657)
3131

3232
//! \brief Request the count of the CPUs detected by the system
3333
//!

Os/FileSystem.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class FileSystemInterface {
5757
FileSystemInterface(const FileSystemInterface& other) = delete;
5858

5959
//! \brief assignment operator is forbidden
60-
FileSystemInterface& operator=(const FileSystemInterface& other) = delete; // NOSONAR (cpp:S3657)
60+
FileSystemInterface& operator=(const FileSystemInterface& other) = delete; // NO_CODESONAR (cpp:S3657)
6161

6262
//! \brief return the underlying FileSystem handle (implementation specific)
6363
//! \return internal FileSystem handle representation

Os/Memory.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class MemoryInterface {
2424
virtual ~MemoryInterface() = default;
2525

2626
//! \brief copy constructor is forbidden
27-
MemoryInterface(const MemoryInterface& other) = delete; // NOSONAR (cpp:S3657)
27+
MemoryInterface(const MemoryInterface& other) = delete; // NO_CODESONAR (cpp:S3657)
2828

2929
//! \brief assignment operator is forbidden
3030
virtual MemoryInterface& operator=(const MemoryInterface& other) = delete;

Os/Queue.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class QueueInterface {
6161
QueueInterface(const QueueInterface* other) = delete;
6262

6363
//! \brief assignment operator is forbidden
64-
virtual QueueInterface& operator=(const QueueInterface& other) = delete; // NOSONAR (cpp:S3657)
64+
virtual QueueInterface& operator=(const QueueInterface& other) = delete; // NO_CODESONAR (cpp:S3657)
6565

6666
//! \brief create queue storage
6767
//!

0 commit comments

Comments
 (0)