Skip to content
New issue

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

Missing header when compiling with gcc14 #3

Open
adlerjan opened this issue Dec 19, 2024 · 0 comments
Open

Missing header when compiling with gcc14 #3

adlerjan opened this issue Dec 19, 2024 · 0 comments

Comments

@adlerjan
Copy link

Hello,

when compiling with gcc14 the header file src/Types/File_system/File_ssytem.hpp is missing an include of 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant