Skip to content

Commit

Permalink
Fixing compilation issues in new test
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Jul 10, 2016
1 parent 32a9b70 commit 4c802ea
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/regressions/iostreams/lost_output_2236.cpp
Expand Up @@ -8,7 +8,9 @@
#include <hpx/include/iostreams.hpp>
#include <hpx/util/lightweight_test.hpp>

#include <string>
#include <strstream>
#include <vector>

///////////////////////////////////////////////////////////////////////////////
std::string expected_output;
Expand All @@ -22,6 +24,8 @@ void generate_output(Ts &&... ts)
{
(stream << ts, 0)..., 0
};
(void)sequencer;

stream << std::endl;

std::string str = stream.str();
Expand Down Expand Up @@ -68,8 +72,8 @@ struct collector_data
, cid(hpx::naming::invalid_id)
, minor_id(0)
, phantom_count(0)
, wc(0)
, rcc(0)
, wc(0)
, rephantomize(false)
, start_over_recovery(false)
, rerecover(false)
Expand Down

0 comments on commit 4c802ea

Please sign in to comment.