1. 程式人生 > 其它 >Qt 錯誤報告 error: multiple types in one declaration #define ElementType double

Qt 錯誤報告 error: multiple types in one declaration #define ElementType double

技術標籤:qt

記錄一次錯誤報告

今天使用qt的過程中遇到一個問題

//mainwindow.h

#define ElementType double

巨集定義一個元素型別
在一個生命中有多種型別

錯誤的原因

// mainwindow.cpp

#include "mainwindow.h"
#include "uiautomation.h"	// 原本應該打ui_mainwindow.h, 結果回車點快了, 識別為uiautomation.h

估計是與uiautomation.h裡面的宣告衝突了, 去掉就好了.