Skip to content

Commit 5ab4a4c

Browse files
authored
Fix a compilation warning (#86)
1 parent bb48ddf commit 5ab4a4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

trantor/utils/Funcs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ inline std::vector<std::string> splitString(const std::string &s,
4848
}
4949
if (s.length() > last || acceptEmptyString)
5050
v.push_back(s.substr(last));
51-
return std::move(v);
51+
return v;
5252
}
5353
} // namespace trantor

0 commit comments

Comments
 (0)