2024-12-04 12:33:36 +01:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: © 2018 Team CharLS
|
|
|
|
SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
-->
|
|
|
|
|
2023-04-21 19:53:15 +02:00
|
|
|
# Comments on disabled Visual Studio C++ Core Guidelines Rules
|
2018-08-15 23:27:43 +02:00
|
|
|
|
2024-12-04 12:33:36 +01:00
|
|
|
This document contains the rationales why some Microsoft
|
|
|
|
C++ warnings are disabled in the file default.ruleset
|
|
|
|
It is not possible to add this info to the .ruleset file itself as edit actions
|
|
|
|
with the VS GUI would cause the comments to get lost.
|
|
|
|
Most of disabled rules\warning are based on the C++ Core Guidelines that require
|
|
|
|
usage of the gsl helper library.
|
|
|
|
|
|
|
|
## Warnings
|
|
|
|
|
|
|
|
- C26426: Global initializer calls a non-constexpr function 'xxx'
|
|
|
|
**Rationale**: many false warnings. CharLS is a library, globals are correctly initialized.
|
2018-08-15 23:27:43 +02:00
|
|
|
|
2024-12-04 12:33:36 +01:00
|
|
|
- C26429: Symbol 'xxx' is never tested for nullness, it can be marked as not_null (f.23).
|
|
|
|
**Rationale**: Prefast attributes are better.
|
2018-08-15 23:27:43 +02:00
|
|
|
|
2024-12-04 12:33:36 +01:00
|
|
|
- C26446: Prefer to use gsl::at() instead of unchecked subscript operator.
|
|
|
|
**Rationale**: CharLS require good performance, gsl:at() cannot be used. debug STL already checks.
|
2018-08-15 23:27:43 +02:00
|
|
|
|
2024-12-04 12:33:36 +01:00
|
|
|
- C26459: You called an STL function '' with a raw pointer parameter. Consider wrapping your range in a gsl::span and pass as a span iterator (stl.1)
|
|
|
|
**Rationale**: gsl:span() cannot be used. Update to std:span when available (C++20).
|
2022-01-08 22:17:02 +01:00
|
|
|
|
2024-12-04 12:33:36 +01:00
|
|
|
- C26472: Don't use static_cast for arithmetic conversions
|
|
|
|
**Rationale**: can only be solved with gsl::narrow_cast
|
2018-08-15 23:27:43 +02:00
|
|
|
|
2024-12-04 12:33:36 +01:00
|
|
|
- C26481: Do not pass an array as a single pointer.
|
|
|
|
**Rationale**: gsl::span is not available.
|
2018-08-15 23:27:43 +02:00
|
|
|
|
2024-12-04 12:33:36 +01:00
|
|
|
- C26482: Only index into arrays using constant expressions.
|
|
|
|
**Rationale**: static analysis can verify access, std::array during runtime (debug)
|
2018-08-15 23:27:43 +02:00
|
|
|
|
2024-12-04 12:33:36 +01:00
|
|
|
- C26490: Don't use reinterpret_cast
|
|
|
|
**Rationale**: required to cast unsigned char\* to char\*.
|
2024-07-23 13:17:12 +02:00
|
|
|
|
2024-12-04 12:33:36 +01:00
|
|
|
- C26494: Variable 'x' is uninitialized. Always initialize an object
|
|
|
|
**Rationale**: many false warnings, already covered with other analyzers.
|