mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-05-08 15:14:01 +08:00
clang-format and clang-tidy fixes for 06f11f1e
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user