1

我正在尝试将xlslib集成到我的应用程序中。在编译和安装 lib 之后,我在我的代码中添加了这个。然后我得到如下所示的错误:

format_t::format_t(CGlobalRecords& gRecords, const u16string& fmtstr) :
formatstr(fmtstr),
index(0),
m_usage_counter(0),
m_GlobalRecords(gRecords)
{
}

错误:

format.cpp:125:52: Reference to 'u16string' is ambiguous

Out-of-line definition of 'format_t' does not match any declaration in

xlslib_core::format_t

在 format.h 文件中,声明如下

format_t(CGlobalRecords& gRecords, const u16string& fmtstr);

任何人都可以帮助解决这个问题吗?

4

1 回答 1

1

您为什么不在 SourceForge 页面上发布错误报告?无论如何,xlslib 项目已经更新,现在提供了 DHxlslibIOS 库,您可以将其合并到您的项目中。您可以在此处下载带有最新 2.4.0b1 源的压缩包,或从 SVN 拉取它。该框架位于 DHxls 目录中。

于 2013-03-13T13:26:38.880 回答