We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
when compiling with gcc14 the header file src/Types/File_system/File_ssytem.hpp is missing an include of cstdint.h.
src/Types/File_system/File_ssytem.hpp
cstdint.h
Fix below:
#ifndef ARGUMENT_TYPE_FILE_SYSTEM_HPP_ #define ARGUMENT_TYPE_FILE_SYSTEM_HPP_ #include <cstdint> #include <stdexcept> #include <algorithm> #include <string> #if defined(_WIN32) || defined(_WIN64) #include <windows.h> #include <processenv.h> // GetEnvironmentVariableA #else #include <cstdlib> // std::getenv #include <stdint.h> #endif
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
when compiling with gcc14 the header file
src/Types/File_system/File_ssytem.hpp
is missing an include ofcstdint.h
.Fix below:
The text was updated successfully, but these errors were encountered: