6

我在一个相当大的文件中有以下几行:

#include <sha.h>
#include <hex.h>

编译时会引发此编译器错误:

1>d:\work\app\tools\cryptopp\algparam.h(322): error C2061: syntax error : identifier 'buffer'
1>          d:\work\app\tools\cryptopp\algparam.h(321) : while compiling class template member function 'void CryptoPP::AlgorithmParametersTemplate<T>::MoveInto(void *) const'
1>          with
1>          [
1>              T=bool
1>          ]
1>          d:\work\app\tools\cryptopp\algparam.h(329) : see reference to class template instantiation 'CryptoPP::AlgorithmParametersTemplate<T>' being compiled
1>          with
1>          [
1>              T=bool
1>          ]

我很确定我忘记了什么,但我不确定是什么。如果我不包含 hex.h,我没有任何问题,我得到一个 SHA256 哈希就好了,但是当我包含 hex.h 时,会弹出错误。

编辑

如果有人想知道,来自 Crypto++ 工具包的 algparam.h:

void MoveInto(void *buffer) const //<=== line 320
{
    AlgorithmParametersTemplate<T>* p = new(buffer)
    AlgorithmParametersTemplate<T>(*this);
}

CRYPTOPP_DLL_TEMPLATE_CLASS AlgorithmParametersTemplate<bool>; // <== line 329

编辑:删除不相关的代码

4

2 回答 2

6

我通过暂时取消定义来解决问题new,它被定义为一些额外调试代码的宏。

#pragma push_macro("new")
#undef new
/* #includes for Crypto++ go here */
#pragma pop_macro("new")
于 2013-04-28T13:32:03.843 回答
1

如果您在支持 MFC 的 Visual Studio 项目中包含 Crypto++,则此错误可能是由以下行引起的:

#ifdef _DEBUG
#define new DEBUG_NEW
#endif

确保将其删除或注释掉。

于 2015-01-19T06:34:09.630 回答