Hi,
Is there a limit to the length of a string in map ? I have the following:
map<string, int>traceHeader Fields;
and when later I say:
traceHeaderFiel ds.insert(pair< string,
int>("GeophoneG roupNumberFirst TraceOrigField" , 1));
it crashes out wherease a shorter string works fine:
traceHeaderFiel ds.insert(pair< string, int>("GeophoneG roupNu", 1));
Anythin longer than 15 character fails !
Thanks in advance
Kamran
Comment