Fix C++11 literal-suffix warnings in main.h and trianglesrpc.cpp

Added spaces between format specifiers and PRIszu/PRIu64/PRIx64 macros
to comply with C++11 requirements.

Fixed warnings in:
- main.h: lines 646 (2x), 1073, 1334
- trianglesrpc.cpp: lines 433, 1067

Build verified successful with no new errors.
This commit is contained in:
Krystie
2026-03-24 11:32:41 +01:00
parent c475f38b85
commit 5f599a72da
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -430,7 +430,7 @@ static string HTTPReply(int nStatus, const string& strMsg, bool keepalive)
"HTTP/1.1 %d %s\r\n"
"Date: %s\r\n"
"Connection: %s\r\n"
"Content-Length: %"PRIszu"\r\n"
"Content-Length: %" PRIszu "\r\n"
"Content-Type: application/json\r\n"
"Server: Triangles-json-rpc/%s\r\n"
"\r\n"
@@ -1064,7 +1064,7 @@ static void HandleSSEConnection(AcceptedConnection* conn)
// Send events
for (size_t i = 0; i < vEvents.size(); i++)
{
std::string strSSE = strprintf("id: %"PRIu64"\ndata: %s\n\n", nLastId - vEvents.size() + i + 1, vEvents[i].c_str());
std::string strSSE = strprintf("id: %" PRIu64 "\ndata: %s\n\n", nLastId - vEvents.size() + i + 1, vEvents[i].c_str());
try {
conn->stream() << strSSE << std::flush;
} catch (...) {