From 1929cfc4f9715ec2dde23b538d77da85fa880e31 Mon Sep 17 00:00:00 2001 From: Cary R Date: Fri, 8 Feb 2013 11:23:43 -0800 Subject: [PATCH] Fix space issues --- netlist.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netlist.h b/netlist.h index b30bb3774..d6c928a38 100644 --- a/netlist.h +++ b/netlist.h @@ -4020,7 +4020,7 @@ class NetESFunc : public NetExpr { private: enum ID { NOT_BUILT_IN = 0x0, MATH_ONE_ARG = 0x100, - CLOG2, LN, LOG10, EXP, SQRT, FLOOR, CEIL, + CLOG2, LN, LOG10, EXP, SQRT, FLOOR, CEIL, SIN, COS, TAN, ASIN, ACOS, ATAN, SINH, COSH, TANH, ASINH, ACOSH, ATANH, AMS_ONE_ARG = 0x180, @@ -4032,7 +4032,7 @@ class NetESFunc : public NetExpr { bool is_ams_(ID id) const { return id & 0x80; }; unsigned nargs_(ID id) const { return id >> 8; }; - + const char* name_; ivl_variable_type_t type_; netenum_t*enum_type_;