SonarSource Rules
  • Products

    In-IDE

    Code Quality and Security in your IDE with SonarQube Ide

    IDE extension that lets you fix coding issues before they exist!

    Discover SonarQube for IDE

    SaaS

    Code Quality and Security in the cloud with SonarQube Cloud

    Setup is effortless and analysis is automatic for most languages

    Discover SonarQube Cloud

    Self-Hosted

    Code Quality and Security Self-Hosted with SonarQube Server

    Fast, accurate analysis; enterprise scalability

    Discover SonarQube Server
  • SecretsSecrets
  • ABAPABAP
  • AnsibleAnsible
  • ApexApex
  • AzureResourceManagerAzureResourceManager
  • CC
  • C#C#
  • C++C++
  • CloudFormationCloudFormation
  • COBOLCOBOL
  • CSSCSS
  • DartDart
  • DockerDocker
  • FlexFlex
  • GitHub ActionsGitHub Actions
  • GoGo
  • HTMLHTML
  • JavaJava
  • JavaScriptJavaScript
  • JSONJSON
  • JCLJCL
  • KotlinKotlin
  • KubernetesKubernetes
  • Objective CObjective C
  • PHPPHP
  • PL/IPL/I
  • PL/SQLPL/SQL
  • PythonPython
  • RPGRPG
  • RubyRuby
  • RustRust
  • ScalaScala
  • ShellShell
  • SwiftSwift
  • TerraformTerraform
  • TextText
  • TypeScriptTypeScript
  • T-SQLT-SQL
  • VB.NETVB.NET
  • VB6VB6
  • XMLXML
  • YAMLYAML
C++

C++ static code analysis

Unique rules to find Bugs, Vulnerabilities, Security Hotspots, and Code Smells in your C++ code

  • All rules 674
  • Vulnerability13
  • Bug139
  • Security Hotspot19
  • Code Smell503

  • Quick Fix 91
Filtered: 5 rules found
since-c++14
    Impact
      Clean code attribute
        1. Transparent function objects should be used with associative "std::string" containers

           Code Smell
        2. Heterogeneous sorted containers should only be used with types that support heterogeneous comparison

           Bug
        3. The "_t" and "_v" version of type traits should be used instead of "::type" and "::value"

           Code Smell
        4. Standard groupings should be used with digit separators

           Code Smell
        5. Digit separators should be used

           Code Smell

        Digit separators should be used

        consistency - formatted
        maintainability
        Code Smell
        Quick FixIDE quick fixes available with SonarQube for IDE
        • since-c++14
        • clumsy

        Why is this an issue?

        C++14 adds the ability to write numbers with digit separators for better readability. Splitting a number that has more than 4 consecutive digits improves readability.

        This rule verifies that numbers are written using digit separators when they have more than 4 consecutive digits.

        Noncompliant code example

        long decimal_int_value     = 5543124;            // Noncompliant; insert ' between groups of 3 digits.
        double decimal_float_value = 7918714.3456;       // Noncompliant; insert ' between groups of 3 digits.
        long hexadecimal_value     = 0x83A32486E2;       // Noncompliant; insert ' between groups of 2 or 4 digits.
        long octal_value           = 04420343313726;     // Noncompliant; insert ' between groups of 2, 3 or 4 digits.
        long binary_value          = 0b0101011011101010; // Noncompliant; insert ' between groups of 2, 3 or 4 digits.
        

        Compliant solution

        long decimal_int_value     = 5'543'124;
        double decimal_float_value = 7'918'714.3456;
        long hexadecimal_value     = 0x83'A324'86E2;
        long octal_value           = 04'4203'4331'3726;
        long binary_value          = 0b0101'0110'1110'1010;
        

        Exceptions

        No issue is raised on the fractional or exponent part of floating point numbers, only the integral part should comply.

          Available In:
        • SonarQube IdeCatch issues on the fly,
          in your IDE
        • SonarQube CloudDetect issues in your GitHub, Azure DevOps Services, Bitbucket Cloud, GitLab repositories
        • SonarQube ServerAnalyze code in your
          on-premise CI
          Developer Edition
          Available Since
          9.1

        © 2008-2025 SonarSource SA. All rights reserved.

        Privacy Policy | Cookie Policy | Terms of Use