Hi in boost mpl documentation I have discovered mpl::string and the following example:
typedef mpl::string<'hell','o wo','rld'> hello;
I'm a little bit surprised because I thought that in C or C++ we can't have more than one character between the character ' ?
Is it normal and valid ?