Removing named namespace from code base.

This commit is contained in:
2026-08-22 21:39:21 -04:00
parent 678795b793
commit 4180622d6a
158 changed files with 12260 additions and 12648 deletions
+6 -6
View File
@@ -1,4 +1,4 @@
#pragma once
#pragma once
#include <Core/Common/String.h>
@@ -10,13 +10,13 @@ namespace Romeo
// Sends a POST request over HTTP/HTTPS.
// Response data is allocated on the provided arena and returned in outResponse.
[[nodiscard]] static bool Post(
Juliet::Arena* arena,
const Juliet::String& host,
Arena* arena,
const String& host,
int port,
const Juliet::String& path,
const String& path,
bool isHttps,
const Juliet::String& requestBody,
Juliet::String& outResponse
const String& requestBody,
String& outResponse
);
};
}