TeDDy 4.1.0
Decision diagram library.
Loading...
Searching...
No Matches
debug.hpp
1#ifndef LIBTEDDY_DETAILS_DEBUG_HPP
2#define LIBTEDDY_DETAILS_DEBUG_HPP
3
4#include <libteddy/details/config.hpp>
5#ifdef LIBTEDDY_VERBOSE
6# include <libteddy/details/types.hpp>
7
8# include <iostream>
9
10namespace teddy::debug
11{
12template<class... Ts>
13auto out ([[maybe_unused]] Ts... str)
14{
15 ((std::cout << str), ...);
16}
17} // namespace teddy::debug
18
19#endif // LIBTEDDY_VERBOSE
20#endif // LIBTEDDY_DETAILS_DEBUG_HPP