Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions include/sampleflow/auxiliary_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

#include <any>
#include <map>
#include <string>


namespace SampleFlow
Expand Down
5 changes: 3 additions & 2 deletions tests/condition_01.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@
// the aux_data.


#include <iostream>

#include <sampleflow/producers/range.h>
#include <sampleflow/filters/condition.h>
#include <sampleflow/consumers/stream_output.h>
#include <sampleflow/connections.h>

#include <iostream>
#include <ranges>


int main ()
{
Expand Down
7 changes: 4 additions & 3 deletions tests/condition_02.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@
// Eratosthenes for computing primes.


#include <iostream>
#include <functional>

#include <sampleflow/producers/range.h>
#include <sampleflow/filters/condition.h>
#include <sampleflow/consumers/stream_output.h>
#include <sampleflow/connections.h>

#include <iostream>
#include <functional>
#include <ranges>


int main ()
{
Expand Down
7 changes: 4 additions & 3 deletions tests/connections_01.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,16 @@
// that setting parentheses works as expected.


#include <iostream>
#include <functional>

#include <sampleflow/producers/range.h>
#include <sampleflow/filters/condition.h>
#include <sampleflow/consumers/stream_output.h>
#include <sampleflow/connections.h>

#include <sstream>
#include <iostream>
#include <functional>
#include <ranges>


int main ()
{
Expand Down
7 changes: 4 additions & 3 deletions tests/connections_02.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,16 @@
// use temporary objects (created in-place) for these.


#include <iostream>
#include <functional>

#include <sampleflow/producers/range.h>
#include <sampleflow/filters/condition.h>
#include <sampleflow/consumers/stream_output.h>
#include <sampleflow/connections.h>

#include <sstream>
#include <iostream>
#include <functional>
#include <ranges>


int main ()
{
Expand Down
6 changes: 3 additions & 3 deletions tests/connections_03.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@
// disappearing objects.


#include <iostream>
#include <functional>

#include <sampleflow/producers/range.h>
#include <sampleflow/filters/condition.h>
#include <sampleflow/consumers/stream_output.h>
#include <sampleflow/connections.h>

#include <sstream>
#include <iostream>
#include <functional>
#include <ranges>

int main ()
{
Expand Down
4 changes: 2 additions & 2 deletions tests/range_producer_03.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
// class.


#include <iostream>

#include <sampleflow/producers/range.h>
#include <sampleflow/consumers/stream_output.h>

#include <iostream>
#include <ranges>


int main ()
Expand Down
4 changes: 2 additions & 2 deletions tests/range_producer_04.cc
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
// class.


#include <iostream>

#include <sampleflow/producers/range.h>
#include <sampleflow/consumers/stream_output.h>

#include <iostream>
#include <ranges>


int main ()
Expand Down
Loading