我在一个相当大的文件中有以下几行:
#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
编辑:删除不相关的代码