Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: uStringPrintf, uPrintf, uPrintfV deprecated - in favour of what? (Read 2189 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

uStringPrintf, uPrintf, uPrintfV deprecated - in favour of what?

Simple question; uStringPrintf, uPrintf and uPrintfV are marked as #pragma deprecated - is there anything in the SDK to replace them?

uStringPrintf, uPrintf, uPrintfV deprecated - in favour of what?

Reply #1
They are deprecated in favor of the pfc::string_formatter and related formatter classes, which all use a syntax similar to stringstream, except you'll be using template functions like pfc::format_int or format_float to format numbers.

 

uStringPrintf, uPrintf, uPrintfV deprecated - in favour of what?

Reply #2
Ah, didn't see that! Thanks!

I wonder why console::printf isn't deprecated?