インクルードの順番でgccだとエラーになります
Posted: 2012年4月05日(木) 22:16
by L'z
IDEを起動するまでもないちょっとしたものを作りたく、すぐにできるgccを使いました。
するとエラーが山のようにいろいろためしてみるとインクルードが
#include <windows.h>
#include <iostream>
この順ならエラーが出て
#include <iostream>
#include <windows.h>
この順ならコンパイルできます。
それ以外のコードはメイン関数にreturn 0;だけでもおこりました。
VC++2010で試した所問題なく動きましたしネットで適当な例を見ても
windows.hが先に来ているのもあります。
gccバージョンは4.3.0です。
gccを使う時だけインクルード順を気にするのも嫌なので順関係なくコンパイルできるようしたいです。
エラーはすごく多いので表示・非表示を切り替えるようしたかったのですが
その機能が使えなかったためすごく長くなります。
パスの一部を?に置換してあります。
するとエラーが山のようにいろいろためしてみるとインクルードが
#include <windows.h>
#include <iostream>
この順ならエラーが出て
#include <iostream>
#include <windows.h>
この順ならコンパイルできます。
それ以外のコードはメイン関数にreturn 0;だけでもおこりました。
VC++2010で試した所問題なく動きましたしネットで適当な例を見ても
windows.hが先に来ているのもあります。
gccバージョンは4.3.0です。
gccを使う時だけインクルード順を気にするのも嫌なので順関係なくコンパイルできるようしたいです。
エラーはすごく多いので表示・非表示を切り替えるようしたかったのですが
その機能が使えなかったためすごく長くなります。
パスの一部を?に置換してあります。
► スポイラーを表示
C:\Documents and Settings\Administrator\My Documents\projects\gcc>g++ aaa.cpp -o
aaa
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ext/type_traits.
h:42,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobas
e.h:73,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/char_traits
.h:46,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ios:45,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:44,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:290:22: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:292:22: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:320:23: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:322:23: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:374:23: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:376:23: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:425:30: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:427:30: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:476:32: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:478:32: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:527:26: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:529:26: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:578:24: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:580:24: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:629:33: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:631:33: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:680:22: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:682:22: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:731:31: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:733:31: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:782:23: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:784:23: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:833:32: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:835:32: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:884:28: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:886:28: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:935:37: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:937:37: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:986:24: error: macro "min" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:988:24: error: macro "max" requ
ires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1043:25: error: macro "min" req
uires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1045:25: error: macro "max" req
uires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1100:30: error: macro "min" req
uires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1102:30: error: macro "max" req
uires 2 arguments, but only 1 given
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/char_traits
.h:46,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ios:45,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:44,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:226:56: error: mac
ro "min" passed 3 arguments, but takes just 2
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:246:56: error: mac
ro "max" passed 3 arguments, but takes just 2
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/string:47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/locale_clas
ses.h:47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/ios_base.h:
47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ios:48,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:44,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/memory:76:62: error: macro "max" requi
res 2 arguments, but only 1 given
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/locale:46,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/ostream.tcc
:45,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:610,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/locale_facets.tcc:610:34: error:
macro "min" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/locale_facets.tcc:610:67: error:
macro "max" requires 2 arguments, but only 1 given
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/istream:845,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:46,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:122:35: error: macro
"min" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:123:45: error: macro
"max" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:142:33: error: macro
"min" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:143:43: error: macro
"max" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:437:48: error: macro
"max" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:440:53: error: macro
"min" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:448:47: error: macro
"max" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:488:48: error: macro
"max" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:492:53: error: macro
"min" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:500:47: error: macro
"max" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:506:53: error: macro
"max" requires 2 arguments, but only 1 given
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:805:43: error: macro
"max" requires 2 arguments, but only 1 given
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ext/type_traits.
h:42,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobas
e.h:73,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/char_traits
.h:46,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ios:45,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:44,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:290: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:292: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:292: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:295: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:320: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:322: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:322: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:325: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:374: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:376: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:376: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:379: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:425: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:427: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:427: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:430: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:476: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:478: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:478: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:481: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:527: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:529: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:529: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:532: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:578: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:580: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:580: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:583: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:629: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:631: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:631: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:634: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:680: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:682: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:682: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:685: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:731: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:733: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:733: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:736: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:782: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:784: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:784: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:787: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:833: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:835: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:835: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:838: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:884: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:886: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:886: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:889: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:935: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:937: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:937: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:940: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:986: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:988: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:988: error: expected ';' before
'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:991: error: expected `;' before
'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1043: error: expected ';' befor
e 'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1045: error: expected `;' befor
e 'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1045: error: expected ';' befor
e 'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1048: error: expected `;' befor
e 'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1100: error: expected ';' befor
e 'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1102: error: expected `;' befor
e 'static'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1102: error: expected ';' befor
e 'throw'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/limits:1105: error: expected `;' befor
e 'static'
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/char_traits
.h:46,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ios:45,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:44,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:182: error: expect
ed unqualified-id before 'const'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:182: error: expect
ed `)' before 'const'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:182: error: expect
ed `)' before 'const'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:182: error: expect
ed initializer before 'const'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:204: error: expect
ed unqualified-id before 'const'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:204: error: expect
ed `)' before 'const'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:204: error: expect
ed `)' before 'const'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:204: error: expect
ed initializer before 'const'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:226: error: functi
on definition does not declare parameters
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:246: error: functi
on definition does not declare parameters
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h: In function 'bool
std::lexicographical_compare(const unsigned char*, const unsigned char*, const
unsigned char*, const unsigned char*)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algobase.h:909: error: expect
ed unqualified-id before '(' token
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/string:47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/locale_clas
ses.h:47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/ios_base.h:
47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ios:48,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:44,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/memory: In function 'std::pair<_Tp*, i
nt> std::__get_temporary_buffer(ptrdiff_t, _Tp*)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/memory:76: error: 'max' is not a membe
r of 'std::numeric_limits<int>'
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/string:52,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/locale_clas
ses.h:47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/ios_base.h:
47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ios:48,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:44,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.h: In member functio
n 'int std::basic_string<_CharT, _Traits, _Alloc>::compare(const std::basic_stri
ng<_CharT, _Traits, _Alloc>&) const':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.h:1932: error: expec
ted unqualified-id before '(' token
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/algorithm:68,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/string:55,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/locale_clas
ses.h:47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/ios_base.h:
47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ios:48,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:44,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algo.h: In function 'void std
::__merge_sort_loop(_RandomAccessIterator1, _RandomAccessIterator1, _RandomAcces
sIterator2, _Distance)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algo.h:3348: error: expected
unqualified-id before '(' token
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algo.h: In function 'void std
::__merge_sort_loop(_RandomAccessIterator1, _RandomAccessIterator1, _RandomAcces
sIterator2, _Distance, _Compare)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/stl_algo.h:3371: error: expected
unqualified-id before '(' token
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/string:56,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/locale_clas
ses.h:47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/ios_base.h:
47,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ios:48,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:44,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc: In member funct
ion 'typename std::basic_string<_CharT, _Traits, _Alloc>::size_type std::basic_s
tring<_CharT, _Traits, _Alloc>::rfind(const _CharT*, typename _Alloc::rebind<_Ch
arT>::other::size_type, typename _Alloc::rebind<_CharT>::other::size_type) const
':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc:765: error: expe
cted unqualified-id before '(' token
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc: In member funct
ion 'int std::basic_string<_CharT, _Traits, _Alloc>::compare(typename _Alloc::re
bind<_CharT>::other::size_type, typename _Alloc::rebind<_CharT>::other::size_typ
e, const std::basic_string<_CharT, _Traits, _Alloc>&) const':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc:902: error: expe
cted unqualified-id before '(' token
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc: In member funct
ion 'int std::basic_string<_CharT, _Traits, _Alloc>::compare(typename _Alloc::re
bind<_CharT>::other::size_type, typename _Alloc::rebind<_CharT>::other::size_typ
e, const std::basic_string<_CharT, _Traits, _Alloc>&, typename _Alloc::rebind<_C
harT>::other::size_type, typename _Alloc::rebind<_CharT>::other::size_type) cons
t':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc:919: error: expe
cted unqualified-id before '(' token
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc: In member funct
ion 'int std::basic_string<_CharT, _Traits, _Alloc>::compare(const _CharT*) cons
t':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc:935: error: expe
cted unqualified-id before '(' token
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc: In member funct
ion 'int std::basic_string<_CharT, _Traits, _Alloc>::compare(typename _Alloc::re
bind<_CharT>::other::size_type, typename _Alloc::rebind<_CharT>::other::size_typ
e, const _CharT*) const':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc:951: error: expe
cted unqualified-id before '(' token
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc: In member funct
ion 'int std::basic_string<_CharT, _Traits, _Alloc>::compare(typename _Alloc::re
bind<_CharT>::other::size_type, typename _Alloc::rebind<_CharT>::other::size_typ
e, const _CharT*, typename _Alloc::rebind<_CharT>::other::size_type) const':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/basic_string.tcc:967: error: expe
cted unqualified-id before '(' token
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/streambuf:820,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ios:49,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:44,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/streambuf.tcc: In member function
'virtual std::streamsize std::basic_streambuf<_CharT, _Traits>::xsgetn(_CharT*,
std::streamsize)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/streambuf.tcc:59: error: expected
unqualified-id before '(' token
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/streambuf.tcc: In member function
'virtual std::streamsize std::basic_streambuf<_CharT, _Traits>::xsputn(const _C
harT*, std::streamsize)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/streambuf.tcc:93: error: expected
unqualified-id before '(' token
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/locale:46,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/bits/ostream.tcc
:45,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/ostream:610,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:45,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/locale_facets.tcc: In member func
tion '_InIter std::time_get<_CharT, _InIter>::_M_extract_name(_InIter, _InIter,
int&, const _CharT**, size_t, std::ios_base&, std::_Ios_Iostate&) const':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/locale_facets.tcc:2098: error: ex
pected unqualified-id before '(' token
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/locale_facets.tcc: In function 'b
ool std::__verify_grouping(const char*, size_t, const std::string&)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/locale_facets.tcc:2561: error: ex
pected unqualified-id before '(' token
In file included from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/istream:845,
from c:/????????????????????????????????????????????/gcc-4.3/bin
/../lib/gcc/i686-pc-mingw32/4.3.0/../../../../include/c++/4.3.0/iostream:46,
from aaa.cpp:2:
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc: In member function '
std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::operat
or>>(short int&)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:122: error: 'min' is
not a member of 'std::numeric_limits<short int>'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:123: error: 'max' is
not a member of 'std::numeric_limits<short int>'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc: In member function '
std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::operat
or>>(int&)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:142: error: 'min' is
not a member of 'std::numeric_limits<int>'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:143: error: 'max' is
not a member of 'std::numeric_limits<int>'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc: In member function '
std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::ignore
(std::streamsize)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:437: error: 'max' is
not a member of 'std::numeric_limits<int>'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:440: error: 'min' is
not a member of 'std::numeric_limits<int>'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:448: error: 'max' is
not a member of 'std::numeric_limits<int>'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc: In member function '
std::basic_istream<_CharT, _Traits>& std::basic_istream<_CharT, _Traits>::ignore
(std::streamsize, typename _Traits::int_type)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:488: error: 'max' is
not a member of 'std::numeric_limits<int>'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:492: error: 'min' is
not a member of 'std::numeric_limits<int>'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:500: error: 'max' is
not a member of 'std::numeric_limits<int>'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:506: error: 'max' is
not a member of 'std::numeric_limits<int>'
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc: In member function '
std::streamsize std::basic_istream<_CharT, _Traits>::readsome(_CharT*, std::stre
amsize)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:583: error: expected
unqualified-id before '(' token
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc: In function 'std::ba
sic_istream<_CharT, _Traits>& std::operator>>(std::basic_istream<_CharT, _Traits
>&, _CharT2*)':
c:/????????????????????????????????????????????/gcc-4.3/bin/../lib/gcc/i686-pc-mi
ngw32/4.3.0/../../../../include/c++/4.3.0/bits/istream.tcc:805: error: 'max' is
not a member of 'std::numeric_limits<int>'