theja0473 / m2m-aligner

Automatically exported from code.google.com/p/m2m-aligner
MIT License
0 stars 0 forks source link

missing "std::" in util.h #3

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. make -f makefile.stlport
2.
3.

What is the expected output? What do you see instead?
Compiler errors of the form
util.h:126: error: reference to ‘istringstream’ is ambiguous
./tclap-1.2.1/include/tclap/Arg.h:43: error: candidates are: typedef struct 
stlp_std::istringstream istringstream

What version of the product are you using? On what operating system?
m2m-aligner-1.2
Linux 2.6.32-5-amd64
gcc (Debian 4.4.5-8) 4.4.5

Please provide any additional information below.
Changing line 126 in util.h from
     istringstream i(s);
to
     std::istringstream i(s);
fixes the problem.

Original issue reported on code.google.com by MarkYLib...@gmail.com on 9 Aug 2013 at 2:14