Skip to content

Commit

Permalink
minor optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasrothenberger committed Jul 8, 2024
1 parent 338ffe5 commit 9233e70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rtlib/calltree/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

namespace __dp {

DependencyMetadata processQueueElement(MetaDataQueueElement mdqe) {
DependencyMetadata processQueueElement(MetaDataQueueElement && mdqe) {
const auto calltree_timer = Timer(timers, TimerRegion::PROCESSQUEUEELEMENT);

// cout << "processing " << mdqe.toString() << "\n";
Expand Down
2 changes: 1 addition & 1 deletion rtlib/calltree/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
#include "MetaDataQueueElement.hpp"

namespace __dp {
DependencyMetadata processQueueElement(MetaDataQueueElement mdqe);
DependencyMetadata processQueueElement(MetaDataQueueElement && mdqe);
} // namespace __dp

0 comments on commit 9233e70

Please sign in to comment.