Opened 8 years ago
Last modified 7 years ago
#10545 closed Bugs
Bug causing linking problems — at Initial Version
Reported by: | Owned by: | Robert Ramey | |
---|---|---|---|
Milestone: | To Be Determined | Component: | serialization |
Version: | Boost 1.56.0 | Severity: | Problem |
Keywords: | Cc: | ramey@… |
Description
The implementations of is_whitespace functions in basic_text_iprimitive.ipp must be inline.
namespace detail {
template<> inline bool is_whitespace(char t){
return 0 != std::isspace(t);
}
#ifndef BOOST_NO_CWCHAR template<> inline bool is_whitespace(wchar_t t){
return 0 != std::iswspace(t);
} #endif
} detail
Note:
See TracTickets
for help on using tickets.