P
Plissken.s
Is it possible to const_cast a reference?
If not , how can I remove to 'const' from a reference?
void aMethod2(A& a) {
}
void aMethod1(const A& a) {
// how can I call aMethod2
}
Thank you.
If not , how can I remove to 'const' from a reference?
void aMethod2(A& a) {
}
void aMethod1(const A& a) {
// how can I call aMethod2
}
Thank you.