Tagged Questions

12
votes
7answers
1k views

How to detect whether there is a specific member variable in class?

For creating algorithm template function I need to know whether x or X (and y or Y) in class that is template argument. It may by useful when using my function for MFC CPoint class or GDI+ PointF ...
2
votes
1answer
254 views

Can I use a SFINAE test in a control flow statement?

I have an SFINAE test for checking if an class has a function. The test works correctly, but I get compiler errors when I try to use it in an if statement. //SFINAE test for setInstanceKey() ...