borland 5.x fix

[SVN r26978]
This commit is contained in:
Jonathan Turkanis
2005-01-31 23:49:55 +00:00
parent c22d5bab8f
commit 774c5656aa

View File

@@ -161,10 +161,11 @@ struct codecvt_helper : std::codecvt<Intern, Extern, State> {
typedef Extern extern_type;
typedef State state_type;
codecvt_helper(std::size_t refs = 0)
#if !BOOST_WORKAROUND(__MWERKS__, <= 0x3003)
: std::codecvt<Intern, Extern, State>(refs)
#else
#if BOOST_WORKAROUND(__MWERKS__, <= 0x3003) || \
BOOST_WORKAROUND(__BORLANDC__, <= 0x600)
: std::codecvt<Intern, Extern, State>()
#else
: std::codecvt<Intern, Extern, State>(refs)
#endif
{ }
};