Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,11 @@ if build_machine.system() == 'linux' or build_machine.system() == 'darwin'

add_project_arguments('-std=c++17', language : 'cpp')
else
add_project_arguments(
'-ldl',
'-lm',
'-lpthread',
language : 'cpp')
add_project_arguments('-std:c++20', language : 'cpp')
if compiler_id == 'msvc'
add_project_arguments('/std:c++20', language : 'cpp')
else
add_project_arguments('-std=c++20', language : 'cpp')
endif
endif

enable_debug_exceptions = get_option('enable_debug_exceptions')
Expand Down
1 change: 1 addition & 0 deletions src/dbzero/bindings/python/embedded/EmbeddedDict.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include <climits>
#include <cmath>
#include <sstream>
#include <utility>

namespace db0::python
{
Expand Down
3 changes: 3 additions & 0 deletions src/dbzero/bindings/python/embedded/EmbeddedObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@

#include <sstream>
#include <cstdint>
#include <string>
#include <unordered_set>
#include <utility>
#include <vector>

namespace db0::python
{
Expand Down
1 change: 1 addition & 0 deletions src/dbzero/object_model/object/ContentIndex.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#pragma once

#include <array>
#include <cstdint>
#include <memory>
#include <optional>
Expand Down
2 changes: 2 additions & 0 deletions src/dbzero/object_model/object/InternContent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

#include <cstring>
#include <memory>
#include <utility>
#include <vector>

#include <dbzero/bindings/TypeId.hpp>
#include <dbzero/bindings/python/PySafeAPI.hpp>
Expand Down
2 changes: 2 additions & 0 deletions src/dbzero/object_model/object/ObjectImmutableImpl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

#include <functional>
#include <optional>
#include <string>
#include <unordered_set>

namespace db0::object_model

Expand Down
8 changes: 8 additions & 0 deletions src/dbzero/object_model/object/ObjectImplBase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
#include "o_object.hpp"
#include "o_immutable_object.hpp"

#include <functional>
#include <memory>
#include <optional>
#include <string>
#include <unordered_set>
#include <utility>
#include <vector>

namespace db0

{
Expand Down
Loading