C1001: Multiple const declaration makes no sense

[WARNING]

Description

The const qualifier was used more than once for the same variable.

Example
  const const int i;

  
Tips

Constant variables need only one const qualifier.

See also