[Quickfix-developers] Question About config.h
Brought to you by:
orenmnero
From: Hei C. <str...@ya...> - 2012-08-22 18:53:12
|
Hi, In config.h, I see the following: /* Define if you have stlport library */ /* #undef HAVE_STLPORT */ - Is there any advantage of using stlport over the standard library if I am on Linux in terms of performance? - I found that if HAVE_STLPORT is defined, #define ALLOCATOR std::allocator is processed. So it just points back to the standard library then (assuming no -lstlport)? - In Utility.h, there are some "using" statements that I don't see how it affects anything: #if (!defined(_MSC_VER) || (_MSC_VER >= 1300)) && !defined(HAVE_STLPORT) using std::abort; using std::sprintf; using std::atoi; using std::atol; using std::atof; using std::isdigit; using std::strcmp; using std::strftime; using std::strlen; using std::abs; using std::labs; using std::memcpy; using std::memset; using std::exit; using std::strtod; using std::strtol; using std::strerror; #endif Am I missing something? - Thanks in advance. Cheers, Hei |