"Rename Local Variable" don't work with multibyte comments
Posted: Fri Jun 21, 2013 2:35 am
Simple example
"Я" - 2 bytes UTF8 char in russian language. If we trying rename "y" - we got message "No matches were found". Error simce to be somewhere in cppscanner. Sometimes its using UTF8Length of string, sometimes per-bytes length.
Code: Select all
#include <stdio.h>
int main(int argc, char **argv)
{
//Я
int y = 22;
printf("%d\n", y);
return 0;
}