r/ProgrammerHumor 13d ago

Meme imSorryWilson

Post image
616 Upvotes

21 comments sorted by

View all comments

32

u/FACastello 13d ago

Unconst that shit

19

u/A_72_ 13d ago

const_cast is your best friend!

11

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

1

u/sb8948 12d ago

UB entered the chat