* @brief Returns an indentation string containing the specified number of * characters. */
| 1047 | * characters. |
| 1048 | */ |
| 1049 | std::string getIndentation(std::size_t count, char c) { |
| 1050 | return std::string(count, c); |
| 1051 | } |
| 1052 | |
| 1053 | /** |
| 1054 | * @brief Appends hexadecimal address to string (typically object name). |