Skip to content

Commit a3ea410

Browse files
committed
mner: always assert
fixes ci release build error
1 parent 88989b6 commit a3ea410

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/matchedNodeElmReader.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ std::vector<BlockInfo> readHeader(std::ifstream& fh) {
614614
rewindStream(fh);
615615
const int self = PCU_Comm_Self();;
616616
bool ret = seekPart(fh, std::to_string(self));
617-
assert(ret);
617+
PCU_ALWAYS_ASSERT(ret);
618618
auto blockInfo = readTopoBlockInfo(fh);
619619
assert(blockInfo.size()>0);
620620
for(auto b : blockInfo) {

0 commit comments

Comments
 (0)