Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Formatting fix; NFC

...

Code Block
bgColor#FFcccc
langcpp
void g(const int &ci) {
  int &ir = const_cast<int &>(ci);
  ir = 42;
}

 
void f() {
  const int i = 4;
  g(i);
}

...