我正在使用 gcc 3.4.6 编译 Sundance-4.37。SUNDANCE(句子理解和概念提取)和自动注释是犹他大学 NLP 实验室开发的软件。圣丹斯预装了OpinionFinder。
它是使用安装脚本编译的。在编译期间,抛出以下错误:
creating ../src/Makefile
g++ -Wall -Wno-deprecated -pipe -g -static -I../include -DHOME=\"/home/shahw/opinionfinder/software/sundance-4.37/\" -c -fPIC -o shared/activation.o activation.C
constituent.h:131: error: extra qualification ‘Constituent::’ on member ‘getWordhelper’
make: *** [shared/activation.o] Error 1
组成部分.h 的第 130-132 行是:
protected:
Word* Constituent::getWordhelper(unsigned int&, unsigned int) const;
};
任何提示将不胜感激。