Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.

Commit 4d26eeb

Browse files
committed
Add more helpful C++ error messages
1 parent 5ab4fcb commit 4d26eeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cc/CatchCvExceptionWorker.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ struct CatchCvExceptionWorker : public FF::SimpleWorker {
88
std::string execute() {
99
try {
1010
return executeCatchCvExceptionWorker();
11-
} catch (std::exception e) {
11+
} catch (std::exception &e) {
1212
return std::string(e.what());
1313
}
1414
}

0 commit comments

Comments
 (0)