24 Aug
2011
24 Aug
'11
11:06 p.m.
2011/8/25 Frédéric Delanoy <frederic.delanoy(a)gmail.com>:
+ const WCHAR inW[] = {'i','n'}; + const WCHAR doW[] = {'d','o'}; ...
Hello, After these patches get in, it might be a good idea to make all these strings static. Even if they are const, the compiler still needs to generate code to initialize the arrays on the stack each time the function is called, element by element -- larger code size and slower. Octavian