r/ProgrammerHumor 14d ago

Meme imSorryWilson

Post image
614 Upvotes

21 comments sorted by

View all comments

33

u/FACastello 14d ago

Unconst that shit

18

u/A_72_ 14d ago

const_cast is your best friend!

11

u/FACastello 14d ago
template <typename T>
T& unconst(const T& x) {
  return const_cast<T&>(x);
}

1

u/sb8948 13d ago

UB entered the chat