
Is there a way to work around this problem in boost ?
We're using boost::serialization under CE. Our workaround for the missing <locale> header is the following:
First we wrote a faked <locale>-header containing just the stuff the compiler needs. This would be something like:
<snip>
#pragma once
namespace std
{
class locale
{
public:
static locale classic()
{
return locale();
}
};
class codecvt_base
{
public:
typedef int result;
};
template