#4791 closed Patches (fixed)
boost/token_functions.hpp: warning isspace/ispunct called with wrong character type
Reported by: | Owned by: | Marshall Clow | |
---|---|---|---|
Milestone: | To Be Determined | Component: | tokenizer |
Version: | Boost 1.44.0 | Severity: | Problem |
Keywords: | Cc: |
Description
When using a date_time parser, MSVC reports warning C6328 because ispunct / iswpunct and isspace/iswspace are called with the wrong type.
The char_type should be extended to int / wint_t to accomodate all valid values and EOF/WEOF.
The following patch (against 1.44.0) solves the issue.
=== modified file boost/token_functions.hpp --- boost/token_functions.hpp 2010-10-07 09:40:43 +0000 +++ boost/token_functions.hpp 2010-10-25 11:25:48 +0000 @@ -218,9 +218,9 @@ { #if !defined(BOOST_NO_CWCTYPE) if (sizeof(char_type) == 1) - return std::isspace(c) != 0; + return std::isspace(static_cast<int>(c)) != 0; else - return std::iswspace(c) != 0; + return std::iswspace(static_cast<std::wint_t>(c)) != 0; #else return static_cast< unsigned >(c) <= 255 && std::isspace(c) != 0; #endif @@ -230,9 +230,9 @@ { #if !defined(BOOST_NO_CWCTYPE) if (sizeof(char_type) == 1) - return std::ispunct(c) != 0; + return std::ispunct(static_cast<int>(c)) != 0; else - return std::iswpunct(c) != 0; + return std::iswpunct(static_cast<std::wint_t>(c)) != 0; #else return static_cast< unsigned >(c) <= 255 && std::ispunct(c) != 0; #endif
Change History (3)
comment:1 by , 12 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
(In [66855]) Merge patch to release; fixes #4791