mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
clang-format and clang-tidy fixes for 06f11f1e
This commit is contained in:
parent
06f11f1edc
commit
a83f79f17a
@ -70,7 +70,7 @@ class CircularLinkedList {
|
|||||||
* @param values The vector of integer values that is to be inserted
|
* @param values The vector of integer values that is to be inserted
|
||||||
* @returns void
|
* @returns void
|
||||||
*/
|
*/
|
||||||
void insert(std::vector<int64_t> values) {
|
void insert(const std::vector<int64_t>& values) {
|
||||||
for (int64_t value : values) {
|
for (int64_t value : values) {
|
||||||
insert(value);
|
insert(value);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user