mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-06 05:01:25 -07:00
Remove const in declarations' arguments that are passed by value
This commit is contained in:
parent
70f1537d9f
commit
8a19a0d4a0
11 changed files with 22 additions and 22 deletions
|
@ -40,6 +40,6 @@ namespace Utils
|
|||
|
||||
// Mimic QByteArray::mid(pos, len) but instead of returning a full-copy,
|
||||
// we only return a partial view
|
||||
const QByteArray midView(const QByteArray &in, const int pos, const int len = -1);
|
||||
const QByteArray midView(const QByteArray &in, int pos, int len = -1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue