Is it safe to define _HAS_TRADITIONAL_STL to enable STL functionality ?
- by Catskul
In attempting to use std::select1st from <functional> in a VS2008 project I found that it was ifdef'd out by a _HAS_TRADITIONAL_STL guard.
Is there a reason for this?
Is it safe to simply define _HAS_TRADITIONAL_STL before including <functional>?