diff options
author | philimonov <philimonov@yandex-team.com> | 2023-07-13 19:34:28 +0300 |
---|---|---|
committer | philimonov <philimonov@yandex-team.com> | 2023-07-13 19:34:28 +0300 |
commit | be3fbb6390e7316dfe3b24e375e7ed12bc10f586 (patch) | |
tree | 75dd17cecc475ca5fa9ebd1e0e78c606ce224329 | |
parent | 489dca66a0d7f2ef90a171470e3349478fb1c70a (diff) | |
download | ydb-be3fbb6390e7316dfe3b24e375e7ed12bc10f586.tar.gz |
Опеспечить совместимость с GCC 12.3
Команда робототехники Я.Маркета собирает свою кодовую базу с
помощью GCC 10.3. Хотелось бы в ближайшем будущем обновиться
до GCC 12.3. Часть кода собирается из директорий:
* util
* library
* yandex_io
Поправил ошибки лексического анализатора GCC 12.3 + добавил
пропущенный стандартные include файлы
-rw-r--r-- | library/cpp/json/yson/json2yson.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/json/yson/json2yson.h b/library/cpp/json/yson/json2yson.h index 758eb6d0cf..6e3bcf5b8e 100644 --- a/library/cpp/json/yson/json2yson.h +++ b/library/cpp/json/yson/json2yson.h @@ -73,7 +73,7 @@ namespace NJson2Yson { class TSkipAttributesProxy: public TBase { public: template <typename... TArgs> - TSkipAttributesProxy<TBase>(TArgs&&... args) + TSkipAttributesProxy(TArgs&&... args) : TBase(std::forward<TArgs>(args)...) { } |