程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C++使用hash_map時警告

C++使用hash_map時警告

編輯:C++入門知識

在C++中使用hash_map時,警告如下:


[html] 
。。。。。。。。。。。。。 
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: 警告:#warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. 
。。。。。。。。。。。。。。 

。。。。。。。。。。。。。
/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../include/c++/4.4.7/backward/backward_warning.h:28:2: 警告:#warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated.
。。。。。。。。。。。。。。


如果使用的話,還有報錯。

報錯與警告的解決方案:


[html] 
set(CMAKE_CXX_FLAGS "-std=c++0x -Wno-deprecated") 

set(CMAKE_CXX_FLAGS "-std=c++0x -Wno-deprecated")
就是在CXX_FLAGS中添加-std=c++0x 以及 -Wno-deprecated這兩個選項

 


這兩個選項的意思:c++0x是新的C++意思。而-Wno-deprecated是表示 no-deprecated這類警告忽略。


 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved