You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#34
also the mailing list topic of "[boost] [all] Request for out of the box visibility support".
By removing the link library entirely this issue goes away. In my discussion with Jeff Garland, the original author:
If you look carefully at what is going on in the .cpp files it’s basically for standard string conversion support for things like months. So greg_month supports things like to_long_string() which need to take a ‘1’ and convert it into ‘January’. Anyway, there’s a few places in the library that this is used which would have to be replaced by a header compatible implementation.
Anyway, the c++98 compatible solutions can already be found in the library — you just need to make the statics part of a template — here’s one of the examples from the facet code — it’s a bit strange but it works. The facets have been header only since they came into the library.
The link library can cause problems, for example:
#34
also the mailing list topic of "[boost] [all] Request for out of the box visibility support".
By removing the link library entirely this issue goes away. In my discussion with Jeff Garland, the original author:
The text was updated successfully, but these errors were encountered: