03-01-2017, 01:53 AM
Hello,
In the above code, because 'x' variable is declared as volatile, I think it violates Rule 13.3. What do you think?
Code:
volatile int x;
x++; // non-compliant - because, x declared with volatile
In the above code, because 'x' variable is declared as volatile, I think it violates Rule 13.3. What do you think?
<t></t>