Bugfix for compiling without uldaq
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Anne de Jong 2023-06-11 05:45:28 -07:00
parent 3904abfcf9
commit ee4b230947
1 changed files with 2 additions and 1 deletions

View File

@ -24,7 +24,7 @@ void showErr(UlError err) {
if (err != ERR_NO_ERROR)
showErr(getErrMsg(err));
}
#endif
void throwOnPossibleUlException(UlError err) {
if (err == ERR_NO_ERROR) {
@ -43,3 +43,4 @@ void throwOnPossibleUlException(UlError err) {
throw Daq::StreamException(serr, errstr);
}
#endif