<[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > are porting an application from Windows to Linux. The native code is > in VC++. > We're getting the following error in g++ for the code given below... > > the code in vc++ is : > > #include <list> > > 146 map<int,int> op; > 147 op.insert(pair<int,int<(CNodeTransformer::OPTIMIZATION_TYPE, > optType));
This definitely looks wrong... maybe try: op.insert(pair<int,int>(CNodeTransformer::OPTIMIZATION_TYPE,optType)); -- Lionel B _______________________________________________ Help-gplusplus mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gplusplus
