356 名前:デフォルトの名無しさん mailto:sage [2009/05/05(火) 12:29:02 ] C++ code - 28 lines - codepad ttp://codepad.org/1sFiMF2t このコードで g++ (GCC) 3.4.5 (mingw special)にて コンパイルオプション -O2 -Wall としたときに発生する警告について、皆様のお知恵をどうかお貸しください。 C:/PROGRA~1/mingw/../lib/gcc/mingw32/3.4.5/../../../../include/c++/3. 4.5/bits/stl_tree.h: In member function `typename std::_Rb_tree<_Key, _Val, _Key OfValue, _Compare, _Alloc>::_Link_type std::_Rb_tree<_Key, _Val, _KeyOfValue, _C ompare, _Alloc>::_M_copy(const std::_Rb_tree_node<_Val>*, std::_Rb_tree_node<_Va l>*) [with _Key = std::string, _Val = std::pair<const std::string, int>, _KeyOfV alue = std::_Select1st<std::pair<const std::string, int> >, _Compare = std::less <std::string>, _Alloc = std::allocator<std::pair<const std::string, int> >]': C:/PROGRA~1/mingw/../lib/gcc/mingw32/3.4.5/../../../../include/c++/3. 4.5/bits/stl_tree.h:1029: warning: '__top' might be used uninitialized in this f unction C:/PROGRA~1/mingw/../lib/gcc/mingw32/3.4.5/../../../../include/c++/3. 4.5/bits/stl_tree.h:365: warning: '__tmp' might be used uninitialized in this fu nction というwarningが出てしまいます。 g++ 〜〜.cpp -O2 でも g++ 〜〜.cpp -Wall でもwarningが出ないのですが g++ 〜〜.cpp -O2 -Wall だとwarningが出てきます。 [C++] MingW warning in one of the stock sources? - GameDev.Net Discussion Forums ttp://www.gamedev.net/community/forums/topic.asp?topic_id=523290 ここの人も同じような問題に当たっているようですが、これは何がおかしいのでしょうか?