Line | Count | Source |
1 | // SPDX-License-Identifier: GPL-2.0-or-later | |
2 | ||
3 | #include "config.h" | |
4 | ||
5 | #include "image_int.hpp" | |
6 | ||
7 | #include <cstddef> | |
8 | #include <string> | |
9 | ||
10 | namespace Exiv2::Internal { | |
11 | 119k | [[nodiscard]] std::string indent(size_t i) { |
12 | 119k | return std::string(2 * i, ' '); |
13 | 119k | } |
14 | ||
15 | } // namespace Exiv2::Internal |