diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-04 15:33:40 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-04 15:33:40 +0200 |
commit | f878f9e4c42f02585e57bb35c3aabf9f69ee3834 (patch) | |
tree | ddb7aaa64677615859ac389a6c3358f2c6a51fe1 /main | |
parent | ee4ce45b36061964eec1602c7bd3692fb9a40a2f (diff) |
More work on Span, add Ensures and Expects
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 349b682..cd64721 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -5,7 +5,7 @@ int main(int /* argc */, char* /* argv */[]) {
auto* api_registry = deimos::InitializeGlobalApiRegistry();
auto* os_api = api_registry->Get<deimos::OsApi>();
- os_api->console->Write(deimos::OsConsoleType::kStdOut, "Hello, world!\n", 14);
+ os_api->console->Write(deimos::OsConsoleType::kStdOut, {"Hello, world!\n", 14});
return 0;
}
|