QuantLib 0.3.9
Getting started
Reference manual
|
Detailed Description
Some compilers still define character functions in the global namespace. For the code to be portable these macros had to be used instead of the actual functions. However, Boost provides the means of bypassing this limitation; therefore, all these macros are now deprecated in favor of the actual functions in namespace std.
|
Defines |
#define | QL_TOUPPER std::toupper |
| convert to uppercase
|
#define | QL_TOLOWER std::tolower |
| convert to lowercase
|
Define Documentation
#define QL_TOUPPER std::toupper |
|
|
convert to uppercase
- Deprecated:
- use std::toupper instead
|
#define QL_TOLOWER std::tolower |
|
|
convert to lowercase
- Deprecated:
- use std::tolower instead
|
|