Skip to content

Commit

Permalink
disables -Werror and fixes warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanpoelen committed Jul 27, 2016
1 parent 16b59ff commit b9fbf6f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cxxflags.jam
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ constant CXXFLAGS-COMMON :
# <cxxflags>-Wsign-conversion
# <cxxflags>-Wconversion
# <cxxflags>-Wno-unused-parameter
<cxxflags>-Werror
# <cxxflags>-Werror

<cxxflags>-fno-rtti
;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/outbound_connection_monitor_rules.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class OutboundConnectionMonitorRules
std::string host_address_or_subnet(rule_c_str, info_separator - rule_c_str);

this->rules.push_back({
uType, std::move(host_address_or_subnet), std::move(std::string(info_separator + 1)),
uType, std::move(host_address_or_subnet), std::string(info_separator + 1),
std::move(description_string)
});
}
Expand Down

0 comments on commit b9fbf6f

Please sign in to comment.