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 » Community » U++ community news and announcements » Improved std::[w]string support
Improved std::[w]string support [message #56175] Wed, 03 February 2021 18:02 Go to previous message
mirek is currently offline  mirek
Messages: 13975
Registered: November 2005
Ultimate Member
This is now possible

	{
		String h = "Hello world";
		std::string sh = h;
		DDUMP(sh);
		h = sh;
		DDUMP(h);
		Value v = sh;
		DDUMP(v);
		sh = v;
		DDUMP(sh);
	}

	{
		WString h = "Hello world";
		std::wstring sh = h;
		DDUMP(sh);
		h = sh;
		DDUMP(h);
		Value v = sh;
		DDUMP(v);
		sh = v;
		DDUMP(sh);
	}


...because why not... Smile
 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: ide: ContextGoto now works with AK_ KEY definitions (jumps into .key file)
Next Topic: ide diff dialogs improved
Goto Forum:
  


Current Time: Sun May 05 14:14:11 CEST 2024

Total time taken to generate the page: 0.02577 seconds