Android NDKで定義されているhash_mapを使用しようとしていますが、「非推奨の警告」が表示されます。
ndk/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/../backward/backward_warning.h:33:2:
error: #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. [-Werror=cpp]
また、「unordered_map」はgnu-libstdc ++ / 4.6 /include/とgnu-libstdc++/ 4.6 / include / tr1 /に存在するため、使用する方法があると思います。
ポイントは見つからないということです。次のうちどれが正しいものですか(もしあれば):
#include <tr1/unordered_map.h>
#include <unordered_map>
そして、それをどのように使用するのですか?__gnu_cxx :: unordered_mapが認識されません...そして、この情報を見つける方法がわかりません。