Skip to content

Commit

Permalink
Fix unused-lambda-capture warning
Browse files Browse the repository at this point in the history
  • Loading branch information
r0mai committed Jan 7, 2018
1 parent dbcb73e commit 20fb3ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/console_displayer.cpp
Expand Up @@ -298,7 +298,7 @@ console_displayer::format_metaprogram_node(const data::metaprogram_node& n_)
result,
[this](const data::cpp_code& s_) { return this->format_code(s_); },
[this](const data::token& t_) { return this->format_token(t_); },
[this](const boost::filesystem::path& p_) {
[](const boost::filesystem::path& p_) {
return data::colored_string(p_.string());
}),
n_);
Expand Down

0 comments on commit 20fb3ff

Please sign in to comment.