Once I was asked a question during the interview.
Hence I have a function void f(std::string)
, and I call a function as this f("int")
. So that my function must create a local int x
in its body. Is there a way to get the type from const char*
. I know that boost::mpl::vector
does solve this kind of problem. Can anyone tell me the technique?