qt 与 x11 头文件同时引用,出现重定义的问题
一、问题描述
qt 与 x11 头文件同时引用,出现重定义的问题:expected identifier before numeric constant
二、解决问题
bash
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
在引用的 头文件 中加入 下面的 取消定义即可
bash
#undef Bool
#undef CursorShape
#undef Expose
#undef KeyPress
#undef KeyRelease
#undef FocusIn
#undef FocusOut
#undef FontChange
#undef None
#undef Status
#undef Unsorted