clang-format and clang-tidy fixes for 06f11f1e

This commit is contained in:
github-actions 2021-10-31 01:38:20 +00:00
parent 06f11f1edc
commit a83f79f17a

View File

@ -70,7 +70,7 @@ class CircularLinkedList {
* @param values The vector of integer values that is to be inserted
* @returns void
*/
void insert(std::vector<int64_t> values) {
void insert(const std::vector<int64_t>& values) {
for (int64_t value : values) {
insert(value);
}