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 » Vector (getting error in Vcont.h)
Vector [message #60049] Sat, 22 July 2023 10:00 Go to next message
nanditha is currently offline  nanditha
Messages: 1
Registered: July 2023
Location: BENGALURU
Junior Member
I am used the vector in my code like this:

struct CsvData : { Vector<Vector<Value>>rows;};




Getting error like this:

/upp/uppsrc/Core/Vcont.h (195): error: call to implicitly-deleted copy constructor of 'Upp::Vector<Upp::Value>'
/upp/uppsrc/Core/Vcont.h (290): note: copy constructor is implicitly deleted because 'Vector<Upp::Value>' has a user-declared move constructor
Re: Vector [message #60050 is a reply to message #60049] Sat, 22 July 2023 20:39 Go to previous message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
Probably somewhere you copy CsvData. U++ intentionally does not support "deep" copy constructor for container, in code you have to "choose" between pick (that is move in std C++) semantics or clone semantics.

That said, you can use "WithDeepCopy" template to change this behaviour.

WithDeepCopy<Vector<WithDeepCopy<Vector<Value>>> rows;
Previous Topic: Plugin: FT_fontsys broken and by extension so is DroidFonts
Next Topic: AMap::GetPut (k, v)
Goto Forum:
  


Current Time: Sat May 04 02:28:15 CEST 2024

Total time taken to generate the page: 0.01767 seconds