Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-PLACET committed Dec 11, 2024
1 parent b3e4ae8 commit 1d8664b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
9 changes: 0 additions & 9 deletions include/sparrow/buffer/allocator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,6 @@ namespace sparrow
&& (std::same_as<A, std::allocator<T>>
|| std::same_as<A, std::pmr::polymorphic_allocator<T>>);

template <class... Ts>
struct overloaded : Ts...
{
using Ts::operator()...;
};
// Although not required in C++20, clang needs it to build the code below
template <class... Ts>
overloaded(Ts...) -> overloaded<Ts...>;

/*
* Type erasure class for allocators. This allows to use any kind of allocator
* (standard, polymorphic) without having to expose it as a template parameter.
Expand Down
2 changes: 0 additions & 2 deletions include/sparrow/types/data_traits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
#include "sparrow/types/data_type.hpp"
#include "sparrow/utils/nullable.hpp"

#include <span>

namespace sparrow
{

Expand Down

0 comments on commit 1d8664b

Please sign in to comment.