diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-10-24 20:05:59 +0300 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-10-24 20:05:59 +0300 |
commit | 67eb006fd8f6efb3fb05adf408a0eecec2d4cd13 (patch) | |
tree | 1d5f79061c5aecfa00823631b12986a404538197 | |
parent | rcc: add generate command (diff) | |
download | rcc-67eb006fd8f6efb3fb05adf408a0eecec2d4cd13.tar.xz |
-rw-r--r-- | lib/compressionctx.h | 2 | ||||
-rw-r--r-- | meson.build | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/lib/compressionctx.h b/lib/compressionctx.h index 2f3946a..a07686f 100644 --- a/lib/compressionctx.h +++ b/lib/compressionctx.h @@ -1,5 +1,7 @@ #include <span> #include <vector> +#include <cstdint> +#include <memory> #pragma once diff --git a/meson.build b/meson.build index 5c7cd65..dac9ca6 100644 --- a/meson.build +++ b/meson.build @@ -3,12 +3,6 @@ project('libembed', ['cpp'], default_options: ['cpp_std=c++2a', 'warning_level=3'], ) -if not meson.is_subproject() -# libstdc++ lacks std::span at the moment -add_project_arguments(['-stdlib=libc++'], language: 'cpp') -add_project_link_arguments(['-stdlib=libc++'], language : 'cpp') -endif - libzstd = dependency('libzstd') libembed_sourceset = import('sourceset').source_set() |