CSRT-NTUA / AlgoPlus

AlgoPlus is a C++17 library for complex data structures and algorithms
https://csrt-ntua.github.io/AlgoPlus
Apache License 2.0
159 stars 20 forks source link

Include of iostream in basically all headers. #70

Closed R-Goc closed 1 month ago

R-Goc commented 1 month ago

It seems like iostream is included in basically all the headers, even when nothing from it is used. Is there any particular reason for that?

spirosmaggioros commented 1 month ago

We need iostream for std::ostream to create the overloading << operators as well as using std::cout for debugging. There's no need for iostream not to be there