| 127 | inline _Comment Comment(const std::string& content) { return _Comment(content); } |
| 128 | |
| 129 | struct _Precision { |
| 130 | _Precision(int floatPrecision_, int doublePrecision_) |
| 131 | : floatPrecision(floatPrecision_), doublePrecision(doublePrecision_) {} |
| 132 | |
| 133 | int floatPrecision; |
| 134 | int doublePrecision; |
| 135 | }; |
| 136 | |
| 137 | inline _Precision FloatPrecision(int n) { return _Precision(n, -1); } |
| 138 |
no outgoing calls
no test coverage detected