I know that you can use <const_cast> to cast a const to a non-const.
But what should you use if you want to cast non-const to const?
|
feedback
|
|
Contrived example:
| |||||
|
feedback
|
|
You don't need const_cast to add constness:
Please read through this question and answer for details. | |||
|
feedback
|
|
You can use a | |||
feedback
|
|
From cplusplus.com:
| ||||
|
feedback
|
|
You have an implicit conversion if you pass an non const argument to a function which has a const parameter | |||
|
feedback
|