]> www.ginac.de Git - cln.git/blob - src/base/ring/cl_ring_debug.cc
Replace CL_REQUIRE/CL_PROVIDE(cl_symbol) with portable code.
[cln.git] / src / base / ring / cl_ring_debug.cc
1 // cl_ring debugging support.
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/ring.h"
8
9
10 // Implementation.
11
12 #include "cln/io.h"
13
14 namespace cln {
15
16 void cl_ring_element::debug_print () const
17 {
18         fprint(cl_debugout, *this);
19         cl_debugout << std::endl; // newline and flush output
20 }
21
22 // This dummy links in this module when <cln/ring.h> requires it.
23 int cl_ring_debug_module;
24
25 }  // namespace cln