Skip to content
Open
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 src/psf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ bool PSFDataSet::get_invertstruct() const {

inline void PSFDataSet::verify_open() const {
if (!m_is_open) {
std::cerr << "Data set is not open" << std::endl;
throw DataSetNotOpen();
}
}
1 change: 0 additions & 1 deletion src/psfnonsweepvalue.cc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ Chunk * ValueSectionNonSweep::child_factory(int chunktype) const {
if(NonSweepValue::ischunk(chunktype))
return new NonSweepValue(psf);
else {
std::cerr << "Unexpected chunktype: " << chunktype << std::endl;
throw IncorrectChunk(chunktype);
}
}
Expand Down
1 change: 0 additions & 1 deletion src/psfreader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ Chunk * ValueSectionNonSweep::child_factory(int chunktype) {
if(NonSweepValue::ischunk(chunktype))
return new NonSweepValue(psf);
else {
std::cerr << "Unexpected chunktype: " << chunktype << std::endl;
throw IncorrectChunk(chunktype);
}
}
Expand Down
3 changes: 0 additions & 3 deletions src/psfsections.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Chunk *HeaderSection::child_factory(int chunktype) const {
else if(chunktype == 1)
return NULL;
else {
std::cerr << "Unexpected chunktype: " << chunktype << std::endl;
throw IncorrectChunk(chunktype);
}
}
Expand All @@ -28,7 +27,6 @@ Chunk *TypeSection::child_factory(int chunktype) const {
if(DataTypeDef::ischunk(chunktype))
return new DataTypeDef();
else {
std::cerr << "Unexpected chunktype: " << chunktype << std::endl;
throw IncorrectChunk(chunktype);
}
}
Expand All @@ -39,7 +37,6 @@ Chunk * SweepSection::child_factory(int chunktype) const {
else if(chunktype == 3)
return NULL;
else {
std::cerr << "Unexpected chunktype: " << chunktype << std::endl;
throw IncorrectChunk(chunktype);
}
}
Expand Down
1 change: 0 additions & 1 deletion src/psftrace.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Chunk * TraceSection::child_factory(int chunktype) const {
else if(GroupDef::ischunk(chunktype))
return new GroupDef(psf);
else {
std::cerr << "Unexpected chunktype: " << chunktype << std::endl;
throw IncorrectChunk(chunktype);
}
}
Expand Down