Skip to content

Commit

Permalink
Remove superfluous 'return'
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Jun 5, 2017
1 parent 6335a35 commit 953e158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/quickstart/file_serialization.cpp
Expand Up @@ -84,7 +84,7 @@ namespace hpx { namespace traits

static void resize(file_wrapper& cont, std::size_t count)
{
return cont.resize(count);
cont.resize(count);
}

static void write(file_wrapper& cont, std::size_t count,
Expand Down

0 comments on commit 953e158

Please sign in to comment.