summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-03-06 18:10:47 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-03-06 18:10:47 +0100
commitdd6eb84aeb993815dd183a818866d5d7d76f226b (patch)
tree01949848f2405c9dc5a3f153673949e434929813
parentaf04c19b70e723f25d561e5fd806ab713c441434 (diff)
compat/setenv: fix build
-rw-r--r--compat/setenv.hpp2
1 files changed, 1 insertions, 1 deletions
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 <cstdlib>
-namespace floormat { using std::getenv; using std::setenv; using std::unsetenv; }
+namespace floormat { using std::getenv; using ::setenv; using ::unsetenv; }
#endif