Skip to content
Closed
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
1 change: 0 additions & 1 deletion DataFormats/MemoryResources/test/testMemoryResources.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ BOOST_AUTO_TEST_CASE(getMessage_test)
BOOST_CHECK(message->GetSize() == 3 * sizeof(testData));
messageArray = static_cast<int*>(message->GetData());
BOOST_CHECK(messageArray[0] == 4 && messageArray[1] == 5 && messageArray[2] == 6);

}

}; // namespace o2::pmr
4 changes: 2 additions & 2 deletions Framework/Core/include/Framework/DataChunk.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ class DataChunk : public std::vector<char, o2::pmr::polymorphic_allocator<char>>
public:
// FIXME: want to have a general forwarding, but then the copy constructor is not deleted any more despite
// it's declared deleted
//template <typename... Args>
//DataChunk(T&& arg, Args&&... args) : std::vector<char, o2::pmr::polymorphic_allocator<char>>(std::forward<Args>(args)...)
// template <typename... Args>
// DataChunk(T&& arg, Args&&... args) : std::vector<char, o2::pmr::polymorphic_allocator<char>>(std::forward<Args>(args)...)
//{
//}

Expand Down