refactor(clang-tidy): Apply fixes

This commit is contained in:
Michael Carlberg
2016-12-04 04:11:47 +01:00
parent 0cfddf7d72
commit 44da14755d
11 changed files with 25 additions and 19 deletions

View File

@ -250,7 +250,7 @@ void builder::node(const label_t& label, bool add_space) {
/**
* Repeat text string n times
*/
void builder::node_repeat(string str, size_t n, bool add_space) {
void builder::node_repeat(const string& str, size_t n, bool add_space) {
string text;
while (n--) {
text += str;