* Explain a bool-valued property. */
| 5619 | * Explain a bool-valued property. |
| 5620 | */ |
| 5621 | void |
| 5622 | ExplainPropertyBool(const char *qlabel, bool value, ExplainState *es) |
| 5623 | { |
| 5624 | ExplainProperty(qlabel, NULL, value ? "true" : "false", true, es); |
| 5625 | } |
| 5626 | |
| 5627 | /* |
| 5628 | * Open a group of related objects. |
no test coverage detected