Skip to content

Instantly share code, notes, and snippets.

@joshuashaffer
Created May 18, 2016 00:44
Show Gist options
  • Save joshuashaffer/bb722331bf3047031cfcc0b5fda3c89b to your computer and use it in GitHub Desktop.
Save joshuashaffer/bb722331bf3047031cfcc0b5fda3c89b to your computer and use it in GitHub Desktop.
Const cast without specifing type...
template <typename T>
constexpr T& const_cast_t(const T& p) {
using pctype = std::remove_const_t<T>;
return const_cast<pctype&>(p);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment