Skip to content

Commit 97ea6ad

Browse files
committed
Please consider the following formatting changes
1 parent a427615 commit 97ea6ad

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

DataFormats/MemoryResources/test/testMemoryResources.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ BOOST_AUTO_TEST_CASE(getMessage_test)
137137
BOOST_CHECK(message->GetSize() == 3 * sizeof(testData));
138138
messageArray = static_cast<int*>(message->GetData());
139139
BOOST_CHECK(messageArray[0] == 4 && messageArray[1] == 5 && messageArray[2] == 6);
140-
141140
}
142141

143142
}; // namespace o2::pmr

Framework/Core/include/Framework/DataChunk.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ class DataChunk : public std::vector<char, o2::pmr::polymorphic_allocator<char>>
2828
public:
2929
// FIXME: want to have a general forwarding, but then the copy constructor is not deleted any more despite
3030
// it's declared deleted
31-
//template <typename... Args>
32-
//DataChunk(T&& arg, Args&&... args) : std::vector<char, o2::pmr::polymorphic_allocator<char>>(std::forward<Args>(args)...)
31+
// template <typename... Args>
32+
// DataChunk(T&& arg, Args&&... args) : std::vector<char, o2::pmr::polymorphic_allocator<char>>(std::forward<Args>(args)...)
3333
//{
3434
//}
3535

0 commit comments

Comments
 (0)