Skip to content

Commit

Permalink
Merge pull request #17 from JiakunYan/fix_arm
Browse files Browse the repository at this point in the history
Fix compilation error on Ookami
  • Loading branch information
G-071 authored Jun 5, 2023
2 parents 1463024 + d633cb5 commit c922bcc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/buffer_manager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -343,13 +343,13 @@ class buffer_recycler {
public: // Putting deleted constructors in public gives more useful error
// messages
// Bunch of constructors we don't need
buffer_manager<T, Host_Allocator>(
buffer_manager(
buffer_manager<T, Host_Allocator> const &other) = delete;
buffer_manager<T, Host_Allocator>
buffer_manager
operator=(buffer_manager<T, Host_Allocator> const &other) = delete;
buffer_manager<T, Host_Allocator>(
buffer_manager(
buffer_manager<T, Host_Allocator> &&other) = delete;
buffer_manager<T, Host_Allocator>
buffer_manager
operator=(buffer_manager<T, Host_Allocator> &&other) = delete;
};

Expand Down Expand Up @@ -560,13 +560,13 @@ class buffer_recycler {
public: // Putting deleted constructors in public gives more useful error
// messages
// Bunch of constructors we don't need
mutexless_buffer_manager<T, Host_Allocator>(
mutexless_buffer_manager(
mutexless_buffer_manager<T, Host_Allocator> const &other) = delete;
mutexless_buffer_manager<T, Host_Allocator> operator=(
mutexless_buffer_manager operator=(
mutexless_buffer_manager<T, Host_Allocator> const &other) = delete;
mutexless_buffer_manager<T, Host_Allocator>(
mutexless_buffer_manager(
mutexless_buffer_manager<T, Host_Allocator> &&other) = delete;
mutexless_buffer_manager<T, Host_Allocator>
mutexless_buffer_manager
operator=(mutexless_buffer_manager<T, Host_Allocator> &&other) = delete;
};

Expand Down

0 comments on commit c922bcc

Please sign in to comment.