| 37 | */ |
| 38 | |
| 39 | void reportScalar(string label, string numstr) { |
| 40 | validate_envIsInit(__func__); |
| 41 | |
| 42 | // harmlessly re-validates |
| 43 | reportStr(label + (label.empty()? "" : ": ") + numstr); |
| 44 | } |
| 45 | |
| 46 | void reportScalar(string label, qcomp num) { reportScalar(label, printer_toStr(num)); } |
| 47 | void reportScalar(string label, qreal num) { reportScalar(label, printer_toStr(num)); } |