本文主要是介绍qt 与 x11 头文件同时引用,出现重定义的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
qt 与 x11 头文件同时引用,出现重定义的问题
- 一、问题描述
- 二、解决问题
一、问题描述
qt 与 x11 头文件同时引用,出现重定义的问题:expected identifier before numeric constant
二、解决问题
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
在引用的 头文件 中加入 下面的 取消定义即可
#undef Bool
#undef CursorShape
#undef Expose
#undef KeyPress
#undef KeyRelease
#undef FocusIn
#undef FocusOut
#undef FontChange
#undef None
#undef Status
#undef Unsorted
这篇关于qt 与 x11 头文件同时引用,出现重定义的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!