This website uses cookies and other technology to provide you a more personalized
experience. By
continuing the view of our web-pages you accept the terms of using these files. If you
don't
want your personal data to be processed, please, leave this site.
Learn More →
V3512. AUTOSAR. Literal suffixes should not contain lowercase characters.
This diagnostic rule is based on the software development guidelines developed by AUTOSAR (AUTomotive Open System ARchitecture).
All literal suffixes should be uppercase.
Using lowercase suffixes obscures the code. For example, you may confuse an 'l' suffix with the numeral one (1), which could cause various mistakes.
Here are examples of literals triggering this warning:
12l; 34.0f; 23u;
The warning is not issued when the literals are written in the following form:
12L; 34.0F; 23U;
This diagnostic is classified as:
|