Skip to content

Commit

Permalink
Fixing inspect errors
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Jun 24, 2016
1 parent d3858f9 commit a9d7153
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
7 changes: 4 additions & 3 deletions hpx/runtime/components/server/memory_block.hpp
Expand Up @@ -303,11 +303,12 @@ namespace hpx { namespace components

HPX_ASSERT(act->save_function());
if (config) {
act->save_function()(data->get_ptr(), data->get_size(), ar, version,
config->get_ptr());
act->save_function()(data->get_ptr(), data->get_size(), ar,
version, config->get_ptr());
}
else {
act->save_function()(data->get_ptr(), data->get_size(), ar, version, nullptr);
act->save_function()(data->get_ptr(), data->get_size(), ar,
version, nullptr);
}
}

Expand Down
3 changes: 2 additions & 1 deletion hpx/util/logging/format/formatter/named_spacer.hpp
Expand Up @@ -187,7 +187,8 @@ namespace detail {
}
else {
// last part
info->write_steps.push_back( write_step( unescape(remaining), nullptr) );
info->write_steps.push_back(
write_step( unescape(remaining), nullptr) );
remaining.clear();
}
}
Expand Down

0 comments on commit a9d7153

Please sign in to comment.