C / C ++预处理错误

时间:2011-09-30 08:37:51

标签: c++ c

我偶然发现编译错误:

Invoking: GCC C Compiler
gcc -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/3dsloader.d"-MT"src/3dsloader.d" -o "src/3dsloader.o" "../src/3dsloader.c"
In file included from ../src/3dsloader.c:42:
../src/3dsloader.h:8:9: error: macro names must be identifiers
make: *** [src/3dsloader.o] Error 1

它指向:

#ifndef 3DSLOADER_H_
#define 3DSLOADER_H_

使用以下消息:

Multiple markers at this line
    macro names must be identifiers
    macro definition not found: #ifndef 3DSLOADER_H_ 

我正在使用Eclipse IDE在Ubuntu上运行C / C ++ OpenGL程序。到目前为止所有其他程序都运行正常。但是这个加载3DS文件的人已经在我身边嘲笑了两天而没有修复它。

有什么建议吗?所有评论都非常感谢!

1 个答案:

答案 0 :(得分:9)

C标识符不能以数字开头。请改为使用_H_3DSLOADER。

确切地说:它们可能只以字母或下划线开头。