Fix a comment.

This commit is contained in:
gibbed 2015-06-03 09:50:13 -05:00
parent 954b67df78
commit 5cfdec7dbf
1 changed files with 6 additions and 7 deletions

View File

@ -71,13 +71,12 @@ class ArgList {
virtual uint64_t get64() = 0; virtual uint64_t get64() = 0;
}; };
/* Making the assumption that the Xbox 360's implementation of the // Making the assumption that the Xbox 360's implementation of the
*printf-functions // printf-functions matches what is described on MSDN's documentation for the
* matches what is described on MSDN's documentation for the Windows CRT: // Windows CRT:
* //
* "Format Specification Syntax: printf and wprintf Functions" // "Format Specification Syntax: printf and wprintf Functions"
* https://msdn.microsoft.com/en-us/library/56e442dc.aspx // https://msdn.microsoft.com/en-us/library/56e442dc.aspx
*/
std::string format_double(double value, int32_t precision, uint16_t c, std::string format_double(double value, int32_t precision, uint16_t c,
uint32_t flags) { uint32_t flags) {