Is it safe to define _HAS_TRADITIONAL_STL to enable STL functionality ?

Posted by Catskul on Stack Overflow See other posts from Stack Overflow or by Catskul
Published on 2010-03-24T00:13:49Z Indexed on 2010/03/24 0:23 UTC
Read the original article Hit count: 442

Filed under:
|
|
|
|

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>?

© Stack Overflow or respective owner

Related posts about c++

Related posts about stl