[clazy] [Bug 450019] New: function-args-by-ref warns about pass by value even when caller uses std::move
David Faure
bugzilla_noreply at kde.org
Fri Feb 11 15:56:24 GMT 2022
https://bugs.kde.org/show_bug.cgi?id=450019
Bug ID: 450019
Summary: function-args-by-ref warns about pass by value even
when caller uses std::move
Product: clazy
Version: unspecified
Platform: Other
OS: Linux
Status: REPORTED
Severity: normal
Priority: NOR
Component: general
Assignee: unassigned-bugs at kde.org
Reporter: faure at kde.org
CC: smartins at kde.org
Target Milestone: ---
SUMMARY
This testcase:
int f(QVector<int> vec)
{
return vec.size();
}
void m()
{
QVector<int> myvec = {1, 2, 3};
qDebug() << f(std::move(myvec));
}
leads to:
OBSERVED RESULT
Warning: Missing reference on non-trivial type (QVector<int>)
[clazy-function-args-by-ref]
EXPECTED RESULT
No warning
SOFTWARE/OS VERSIONS
clazy version 1.10
LLVM (http://llvm.org/):
LLVM version 12.0.1
--
You are receiving this mail because:
You are the assignee for the bug.
More information about the Unassigned-bugs
mailing list