|
|
@@ -983,8 +983,8 @@ namespace CodeDweller { |
|
|
|
template<typename T> |
|
|
|
size_t read(T &data, size_t nBytes = 0) { |
|
|
|
|
|
|
|
if (!isRunning()) { |
|
|
|
throw std::logic_error("No child process is running."); |
|
|
|
if (!childStarted) { |
|
|
|
throw std::logic_error("Child process was not started."); |
|
|
|
} |
|
|
|
|
|
|
|
data.clear(); |
|
|
@@ -1059,8 +1059,8 @@ namespace CodeDweller { |
|
|
|
template<typename T, typename U> |
|
|
|
bool readDelimited(T &data, U const &delimiter) { |
|
|
|
|
|
|
|
if (!isRunning()) { |
|
|
|
throw std::logic_error("No child process is running."); |
|
|
|
if (!childStarted) { |
|
|
|
throw std::logic_error("Child process was not started."); |
|
|
|
} |
|
|
|
|
|
|
|
data.clear(); |
|
|
@@ -1098,7 +1098,6 @@ namespace CodeDweller { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** Non-blocking request to get data up to a delimiter read from |
|
|
|
the child. |
|
|
|
|