Kuba Ober <[EMAIL PROTECTED]> writes:

>> | What's the general karma of having something like
>> |
>> | const int blah = 123;
>> |
>> | in a header file, inside a namespace (or not)? As far as I take it,
>> | it's a
>>
>> Do we have those in header files?
>> that is not good.
>> and if we had them it should be
>> int const blah = 123;
>> and it would still be bad.
>
| Is there a practical difference between const int var and int const var ? 
| Consider me dumb :(

Yes :-) Consistency.

extern int const blah; // in the header file

int const blah = 123; // in the source file

-- 
        Lgb

Reply via email to