File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff 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 // !
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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 // !
You can’t perform that action at this time.
0 commit comments