projects
/
dcpomatic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b96aae6
)
Optimisation: return notes by reference.
author
Carl Hetherington
<cth@carlh.net>
Wed, 24 Jul 2024 16:39:05 +0000
(18:39 +0200)
committer
Carl Hetherington
<cth@carlh.net>
Sat, 27 Jul 2024 11:10:44 +0000
(13:10 +0200)
src/lib/verify_dcp_job.h
patch
|
blob
|
history
diff --git
a/src/lib/verify_dcp_job.h
b/src/lib/verify_dcp_job.h
index 61a34750717879a288cd22c886c9a1d3bb2cad91..e6497bd83c8fd254048e9aea14457b62c04ea925 100644
(file)
--- a/
src/lib/verify_dcp_job.h
+++ b/
src/lib/verify_dcp_job.h
@@
-36,7
+36,7
@@
public:
std::string json_name () const override;
void run () override;
- std::vector<dcp::VerificationNote>
notes
() const {
+ std::vector<dcp::VerificationNote>
const& notes
() const {
return _notes;
}