aboutsummaryrefslogtreecommitdiff
path: root/ttwhy/main.cpp
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2026-06-18 09:05:34 +0200
committerFelix Morgner <felix.morgner@gmail.com>2026-06-18 09:05:34 +0200
commit4a365d974b17f71914909df8fe532edc929f3cad (patch)
tree148f33e962bdd17e1dda3ba7a88d17e778e9f9a0 /ttwhy/main.cpp
parent6dc9508bf13d78a990a36b2b43e9fa498ddbe228 (diff)
downloadttwhy-4a365d974b17f71914909df8fe532edc929f3cad.tar.xz
ttwhy-4a365d974b17f71914909df8fe532edc929f3cad.zip
chore: clean up code
Diffstat (limited to 'ttwhy/main.cpp')
-rw-r--r--ttwhy/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ttwhy/main.cpp b/ttwhy/main.cpp
index 649d01d..94c1330 100644
--- a/ttwhy/main.cpp
+++ b/ttwhy/main.cpp
@@ -35,7 +35,7 @@ auto main() -> int
.echo(false);
auto context = asio::io_context{};
- asio::co_spawn(context, app(fileno(stdin), fileno(stdout), fileno(stderr)), asio::detached);
+ asio::co_spawn(context, app(::fileno(::stdin), ::fileno(::stdout), ::fileno(::stderr)), asio::detached);
context.run();
}