Skip to content

Commit 37d966e

Browse files
committed
Update some further instances after rebasing
1 parent 9f75622 commit 37d966e

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

include/openPMD/RecordComponent.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#pragma once
2222

2323
#include "openPMD/Dataset.hpp"
24-
#include "openPMD/auxiliary/ShareRaw.hpp"
2524
#include "openPMD/auxiliary/TypeTraits.hpp"
2625
#include "openPMD/backend/BaseRecordComponent.hpp"
2726

test/SerialIOTest.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6600,8 +6600,8 @@ void groupbased_read_write(std::string const &ext)
66006600
auto E_y = write.iterations[0].meshes["E"]["y"];
66016601
E_x.resetDataset(ds);
66026602
E_y.resetDataset(ds);
6603-
E_x.storeChunk(shareRaw(&data), {0}, {1});
6604-
E_y.storeChunk(shareRaw(&data), {0}, {1});
6603+
E_x.storeChunkRaw(&data, {0}, {1});
6604+
E_y.storeChunkRaw(&data, {0}, {1});
66056605

66066606
E_x.setAttribute("updated_in_run", 0);
66076607
E_y.setAttribute("updated_in_run", 0);
@@ -6618,8 +6618,8 @@ void groupbased_read_write(std::string const &ext)
66186618

66196619
data = 1;
66206620

6621-
E_x.storeChunk(shareRaw(&data), {0}, {1});
6622-
E_y.storeChunk(shareRaw(&data), {0}, {1});
6621+
E_x.storeChunkRaw(&data, {0}, {1});
6622+
E_y.storeChunkRaw(&data, {0}, {1});
66236623

66246624
E_x.setAttribute("updated_in_run", 1);
66256625
E_y.setAttribute("updated_in_run", 1);
@@ -6655,7 +6655,7 @@ void groupbased_read_write(std::string const &ext)
66556655

66566656
data = 2;
66576657

6658-
E_x.storeChunk(shareRaw(&data), {0}, {1});
6658+
E_x.storeChunkRaw(&data, {0}, {1});
66596659
E_x.setAttribute("updated_in_run", 2);
66606660
}
66616661

0 commit comments

Comments
 (0)