Skip to content

Commit

Permalink
trying to please CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lnkuiper committed Oct 9, 2024
1 parent 973031a commit 9a5e88e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/include/duckdb/common/stl_allocator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class AllocationFunctions {
free_function_t free = nullptr;
};

extern AllocationFunctions DEFAULT_ALLOCATION_FUNCTIONS; // NOLINT: non-const on purpose
extern DUCKDB_API AllocationFunctions DEFAULT_ALLOCATION_FUNCTIONS; // NOLINT: non-const on purpose

template <class T>
T *stl_new_array_uninitialized(size_t size) { // NOLINT: not using camelcase on purpose here
Expand Down Expand Up @@ -106,7 +106,7 @@ class stl_allocator { // NOLINT: not using camelcase on purpose here
using propagate_on_container_copy_assignment = std::true_type;
using propagate_on_container_move_assignment = std::true_type;
using propagate_on_container_swap = std::true_type;
using is_always_equal = std::true_type;
using is_always_equal = std::false_type; // because allocator is stateful
template <class U>
struct rebind {
typedef stl_allocator<U> other;
Expand Down

0 comments on commit 9a5e88e

Please sign in to comment.