From dd6eb84aeb993815dd183a818866d5d7d76f226b Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 6 Mar 2023 18:10:47 +0100 Subject: compat/setenv: fix build --- compat/setenv.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat/setenv.hpp b/compat/setenv.hpp index 5dff666a..1fc8486c 100644 --- a/compat/setenv.hpp +++ b/compat/setenv.hpp @@ -9,5 +9,5 @@ int unsetenv(const char* name); } // namespace floormat #else #include -namespace floormat { using std::getenv; using std::setenv; using std::unsetenv; } +namespace floormat { using std::getenv; using ::setenv; using ::unsetenv; } #endif -- cgit v1.2.3