diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-06 18:10:47 +0100 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-06 18:10:47 +0100 |
| commit | dd6eb84aeb993815dd183a818866d5d7d76f226b (patch) | |
| tree | 01949848f2405c9dc5a3f153673949e434929813 | |
| parent | af04c19b70e723f25d561e5fd806ab713c441434 (diff) | |
compat/setenv: fix build
| -rw-r--r-- | compat/setenv.hpp | 2 |
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 |
