我从g ++中得到了奇怪的错误。错误提示在其他项目中编译自身的过程很好,但在某种程度上不是。以下是g ++抱怨的内容:
g++ -c -Wall -pedantic clear_screen.cpp -lcurses -o .clear.o
clear_screen.cpp:6:6: error: expected initializer before ‘->’ token
make: *** [.clear.o] Error 1
相应的makefile部分如下所示:
CC=g++
CFLAGS=-c -Wall -pedantic
COMP=$(CC) $(CFLAGS)
.clear.o : clear_screen.cpp
$(COMP) clear_screen.cpp -lcurses -o $@
有问题的文件包含以下几行:
#include <unistd.h>
#include <term.h>
void clear_screen() {
if ( !cur_term ) { // line 6 is here
int result;
setupterm( NULL, STDOUT_FILENO, &result );
if (result <= 0) return;
}
putp( tigetstr( "clear" ) );
}
我哪里错了?
答案 0 :(得分:1)
clear_screen
在term.h
中定义为cur_term->type.Strings[5]
(至少在我的系统上),因此->
存在问题。请参阅g++ -E
输出以查看预处理器的功能。因此,基本上您需要使用与clear_screen
不同的名称来避免冲突。