Drop superfluous const

This commit is contained in:
Chocobo1 2023-05-05 01:49:24 +08:00
parent 15de7aed9a
commit 5f00d42a49
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
19 changed files with 52 additions and 52 deletions

View file

@ -53,7 +53,7 @@ namespace Utils::IO
using pointer = void;
using reference = void;
explicit FileDeviceOutputIterator(QFileDevice &device, const int bufferSize = (4 * 1024));
explicit FileDeviceOutputIterator(QFileDevice &device, int bufferSize = (4 * 1024));
FileDeviceOutputIterator(const FileDeviceOutputIterator &other) = default;
~FileDeviceOutputIterator();