/* # static_cast http://en.cppreference.com/w/cpp/language/static_cast - done at compile time - may results in an extra copy constructor call, and thus extra assembly intructions - always returns a temporary - cannot change const and volatile (CV). Use const_cast for that. */ #include "common.hpp" int main() { // TODO. }