Subject: [Boost-bugs] [Boost C++ Libraries] #10545: Bug causing linking problems
From: Boost C++ Libraries (noreply_at_[hidden])
Date: 2014-09-26 16:48:26
#10545: Bug causing linking problems
------------------------------+---------------------------
Reporter: jlodos@⦠| Owner: ramey
Type: Bugs | Status: new
Milestone: To Be Determined | Component: serialization
Version: Boost 1.56.0 | Severity: Problem
Keywords: |
------------------------------+---------------------------
The implementations of is_whitespace functions in
basic_text_iprimitive.ipp must be inline.
namespace detail {
template<class CharType>
bool is_whitespace(CharType c);
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
-- Ticket URL: <https://svn.boost.org/trac/boost/ticket/10545> Boost C++ Libraries <http://www.boost.org/> Boost provides free peer-reviewed portable C++ source libraries.
This archive was generated by hypermail 2.1.7 : 2017-02-16 18:50:17 UTC