Question
How do i get C++ formatter to work correct, problems with typeid()
This code (very short non compiling i know)
void main()
{
int f;
for (auto i : array[typeid(f)])
{
}
}If i try and format it, when typeid is presented to a know type it formats like this:
void main()
{
int f;
for (auto i : array[typeid(f)])
{
}
}makes NO sence.. online formatters does not..
/M
