Algebraic-Programming / ALP

Home of ALP/GraphBLAS and ALP/Pregel, featuring shared- and distributed-memory auto-parallelisation of linear algebraic and vertex-centric programs. Soon with more to come!
Apache License 2.0
25 stars 4 forks source link

Fix a metabug in utils.hpp #324

Closed anyzelman closed 7 months ago

anyzelman commented 7 months ago

In a recent commit, some includes were reordered which laid bare that in utils.hpp and when compiling in debug mode (i.e., with the _DEBUG macro defined), iostream should have been included but was not. This MR fixes that issue.

The expected impact of this is minimal, since it is a metabug (something that only affects debug builds) and the time the bug was present was minimal.

Thanks to the internal CI for detecting the issue;)