| 170 | } |
| 171 | |
| 172 | void AMFField::SetNumber(double val) { |
| 173 | if (_type != AMF_MARKER_NUMBER) { |
| 174 | Clear(); |
| 175 | _type = AMF_MARKER_NUMBER; |
| 176 | } |
| 177 | _num = val; |
| 178 | } |
| 179 | |
| 180 | void AMFField::SetNull() { |
| 181 | if (_type != AMF_MARKER_NULL) { |
no outgoing calls
no test coverage detected