We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6537212 commit 16200fcCopy full SHA for 16200fc
src/Iteration.cpp
@@ -480,6 +480,11 @@ void Iteration::readGorVBased(
480
481
void Iteration::read_impl(std::string const &groupPath)
482
{
483
+ if (!get().m_deferredParseAccess.has_value())
484
+ {
485
+ throw error::Internal(
486
+ "Attempted reparsing an Iteration that is already parsed.");
487
+ }
488
Parameter<Operation::OPEN_PATH> pOpen;
489
pOpen.path = groupPath;
490
IOHandler()->enqueue(IOTask(this, pOpen));
0 commit comments