diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-20 13:01:24 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-20 13:01:57 +0100 |
| commit | 34fc5336b50c6ae490546ee8f5c95eedb80b49e8 (patch) | |
| tree | 2a3004c5c54899747a43a336774bf78e89d8126a /include/LibC++/filesystem.h | |
| parent | 2a40debc078efdcacb23762aae89ae307e8b81e9 (diff) | |
feat: new types `callable_type`, `complex_domain`, and `real_domain` for LibC++/Nectar.v0.1.0
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/LibC++/filesystem.h')
| -rw-r--r-- | include/LibC++/filesystem.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/LibC++/filesystem.h b/include/LibC++/filesystem.h index af9fd79..91218e8 100644 --- a/include/LibC++/filesystem.h +++ b/include/LibC++/filesystem.h @@ -7,7 +7,8 @@ #ifndef __NECTAR_FS_H__ #define __NECTAR_FS_H__ -#include <LibC++/defines.h> +#include <chrono> +#include <defines> namespace std { class path; @@ -16,4 +17,8 @@ class directory_entry; class directory_iterator; } // namespace std -#endif // __NECTAR_FS_H__
\ No newline at end of file +#ifndef __cpp_lib_filesystem +#define __cpp_lib_filesystem 201703L +#endif + +#endif // __NECTAR_FS_H__ |
