Tomas Lindquist Olsen wrote: > Can you post an example of why we need 'static const' ? int foo(int x) { static const i = x; // error, x is not const const j = x; // ok, j is const for duration of foo() call }