'XX' does not name a type 和 field 'XX' has incomplete type - 兩個 C++ 編譯錯誤及解決辦法
目前分類:Trace&Debug (11)
- Aug 21 Thu 2014 15:18
'XX' does not name a type 和 field 'XX' has incomplete type - 兩個 C++ 編譯錯誤及解決辦法
- May 23 Fri 2014 13:46
自訂debug message
- Jan 17 Thu 2013 17:06
control reaches end of non-void function
- May 23 Wed 2012 11:55
the frame size of XXX bytes is larger than 1024 bytes
最近編譯時遇到的問題
找了好久
- Sep 02 Thu 2010 18:42
ISO C90 forbids mixed declarations and code
ISO C90 forbids mixed declarations and code
- Aug 30 Mon 2010 16:15
assignment discards qualifiers from pointer target type
這個 warning 錯誤說明, 回傳值是一個 const 的類型,而你聲明使用的那個變數並不是 const, 舉例如下:
- Aug 30 Mon 2010 14:12
implicit declaration of function
implicit declaration of function 。
- May 07 Fri 2010 11:28
Eerror : storage class specified for parameter
今天編譯時,出現error: storage class specified for parameter問題
- Mar 17 Wed 2010 18:41
multiple definition of XXX first defined here 的錯誤
multiple definition of XXX first defined here 的錯誤
- Mar 17 Wed 2010 16:48
千萬別把 function definition & 變數 definition 寫入 .h 裡
程式碼一多,為了撰寫與維護的方便,最好的方法就是將一個.cpp檔切割成多個檔案( .cpp & .h )