diff options
author | bnagaev <bnagaev@yandex-team.ru> | 2022-02-10 16:47:04 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:04 +0300 |
commit | d6449ba66291ff0c0d352c82e6eb3efb4c8a7e8d (patch) | |
tree | d5dca6d44593f5e52556a1cc7b1ab0386e096ebe /contrib/libs/yaml-cpp/src/indentation.h | |
parent | 1861d4c1402bb2c67a3e6b43b51706081b74508a (diff) | |
download | ydb-d6449ba66291ff0c0d352c82e6eb3efb4c8a7e8d.tar.gz |
Restoring authorship annotation for <bnagaev@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs/yaml-cpp/src/indentation.h')
-rw-r--r-- | contrib/libs/yaml-cpp/src/indentation.h | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/contrib/libs/yaml-cpp/src/indentation.h b/contrib/libs/yaml-cpp/src/indentation.h index 1a2ccaea2e..d6b1ce62cd 100644 --- a/contrib/libs/yaml-cpp/src/indentation.h +++ b/contrib/libs/yaml-cpp/src/indentation.h @@ -1,41 +1,41 @@ -#ifndef INDENTATION_H_62B23520_7C8E_11DE_8A39_0800200C9A66 -#define INDENTATION_H_62B23520_7C8E_11DE_8A39_0800200C9A66 - -#if defined(_MSC_VER) || \ - (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \ - (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4 -#pragma once -#endif - -#include <iostream> -#include <cstddef> - -#include "yaml-cpp/ostream_wrapper.h" - -namespace YAML { -struct Indentation { - Indentation(std::size_t n_) : n(n_) {} - std::size_t n; -}; - -inline ostream_wrapper& operator<<(ostream_wrapper& out, - const Indentation& indent) { - for (std::size_t i = 0; i < indent.n; i++) - out << ' '; - return out; -} - -struct IndentTo { - IndentTo(std::size_t n_) : n(n_) {} - std::size_t n; -}; - -inline ostream_wrapper& operator<<(ostream_wrapper& out, - const IndentTo& indent) { - while (out.col() < indent.n) - out << ' '; - return out; -} -} - -#endif // INDENTATION_H_62B23520_7C8E_11DE_8A39_0800200C9A66 +#ifndef INDENTATION_H_62B23520_7C8E_11DE_8A39_0800200C9A66 +#define INDENTATION_H_62B23520_7C8E_11DE_8A39_0800200C9A66 + +#if defined(_MSC_VER) || \ + (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || \ + (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4 +#pragma once +#endif + +#include <iostream> +#include <cstddef> + +#include "yaml-cpp/ostream_wrapper.h" + +namespace YAML { +struct Indentation { + Indentation(std::size_t n_) : n(n_) {} + std::size_t n; +}; + +inline ostream_wrapper& operator<<(ostream_wrapper& out, + const Indentation& indent) { + for (std::size_t i = 0; i < indent.n; i++) + out << ' '; + return out; +} + +struct IndentTo { + IndentTo(std::size_t n_) : n(n_) {} + std::size_t n; +}; + +inline ostream_wrapper& operator<<(ostream_wrapper& out, + const IndentTo& indent) { + while (out.col() < indent.n) + out << ' '; + return out; +} +} + +#endif // INDENTATION_H_62B23520_7C8E_11DE_8A39_0800200C9A66 |