Skip to content

Commit 0add8fb

Browse files
committed
Fix trim parameter passing in inspect tool
1 parent 2f157a6 commit 0add8fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/inspect/inspect.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ namespace {
166166
typedef std::vector<lib_error_count> lib_error_count_vector;
167167
lib_error_count_vector libs;
168168

169-
std::string trim(std::string value)
169+
std::string trim(std::string const& value)
170170
{
171171
std::string whitespace = " \t\r\n";
172172
std::string::size_type begin = value.find_first_not_of(whitespace);

0 commit comments

Comments
 (0)