Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » U++ Core » VectorMap<String,String> = Seg Fault  () 1 Vote
Re: VectorMap<String,String> = Seg Fault [message #28110 is a reply to message #28108] Tue, 17 August 2010 08:31 Go to previous messageGo to previous message
koldo is currently offline  koldo
Messages: 3437
Registered: August 2008
Senior Veteran
Hello Jeremy

Doing this has been quite aggresive Smile

Vector<String> keys = map.GetKeys();


Vector class has not any copy constructor.

It would work this:

Vector<String> keys;
keys <<= map.GetKeys();


Or much better, this:

const Vector<String> &keys = map.GetKeys();


Best regards
IƱaki
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Problem. How to convert AttrText to String?
Next Topic: Problem and fix in HexString
Goto Forum:
  


Current Time: Sun Jul 20 15:13:24 CEST 2025

Total time taken to generate the page: 0.03695 seconds