SFINAE allows us to detect if a type has certain data members or member functions. Can it also be used to detect if a type exists at all? Background: I want to know whether <vector> was included or not.
| |||
|
feedback
|
|
It can do, although I've only managed to make it work in C++0x.
The structure is very curious and although there should be certain obvious simplifications, they don't work. More importantly, why don't you just | |||||||||||
feedback
|
|
I have one problem with the question: If You are effectively asking the compiler to test if I don't see how any solution could possibly work and be standard compliant, but I am no standardista so there might be a caveat I am not aware of. | |||||
feedback
|
<vector>was included or not, but does different things? That's evil, especially considering that it's up to the implementation how standard headers mutually include each other. – Steve Jessop Nov 17 '10 at 19:32