Is There a Difference Between These Two Declarations?
As the title says, is there a difference between these two
const declarations:
1 2 3 4
|
int iSomeValue( 10 );
const int &rRefDeclOne( iSomeValue );
int const &rRefDeclTwo( iSomeValue );
|
Wazzak
None.
Topic archived. No new replies allowed.