Fix to build with GCC 4.9
This commit is contained in:
parent
720be50ff4
commit
a17a8f7b16
@ -153,9 +153,6 @@ namespace spades {
|
||||
std::tuple<IStream *, IStream *> CreatePipeStream() {
|
||||
auto state = std::make_shared<State>();
|
||||
|
||||
return {
|
||||
new PipeWriter(state),
|
||||
new PipeReader(state),
|
||||
};
|
||||
return std::make_tuple(new PipeWriter(state), new PipeReader(state));
|
||||
}
|
||||
} // namespace spades
|
||||
|
Loading…
x
Reference in New Issue
Block a user