PageRenderTime 25ms CodeModel.GetById 16ms app.highlight 6ms RepoModel.GetById 1ms app.codeStats 0ms

/cln-1.3.2/src/rational/elem/cl_RA_minusp.cc

#
C++ | 23 lines | 11 code | 8 blank | 4 comment | 0 complexity | 773b1480f57ba48ba29ecda67a2d5577 MD5 | raw file
Possible License(s): GPL-2.0
 1// minusp().
 2
 3// General includes.
 4#include "base/cl_sysdep.h"
 5
 6// Specification.
 7#include "cln/rational.h"
 8
 9
10// Implementation.
11
12#define minusp minusp_inline
13#include "rational/cl_RA.h"
14#undef minusp
15
16namespace cln {
17
18bool CL_FLATTEN minusp (const cl_RA& x)
19{
20	return minusp_inline(x);
21}
22
23}  // namespace cln