diff options
author | thegeorg <thegeorg@yandex-team.com> | 2025-03-28 11:59:35 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2025-03-28 12:15:45 +0300 |
commit | dcaa8f4e65038291a3e15c2f6fd906497f2d77cd (patch) | |
tree | 44072455541e7d94844ce5178dfe74a026f5acd5 /library/cpp | |
parent | d665a9c6ff9eced8f2f6a2e53e000de83e0924e0 (diff) | |
download | ydb-dcaa8f4e65038291a3e15c2f6fd906497f2d77cd.tar.gz |
Merge yexception.h and bt_exception.h to prevent include cycle
commit_hash:4a6a74639669cf2836dedbc7b61efb1f43faef1f
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/codecs/codecs.h | 2 | ||||
-rw-r--r-- | library/cpp/config/config.h | 2 | ||||
-rw-r--r-- | library/cpp/json/writer/json_value.cpp | 2 | ||||
-rw-r--r-- | library/cpp/testing/benchmark/examples/main.cpp | 2 | ||||
-rw-r--r-- | library/cpp/testing/unittest/registar.cpp | 2 | ||||
-rw-r--r-- | library/cpp/testing/unittest/registar.h | 2 | ||||
-rw-r--r-- | library/cpp/yson/node/node.h | 2 | ||||
-rw-r--r-- | library/cpp/yson_pull/read_ops.h | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/library/cpp/codecs/codecs.h b/library/cpp/codecs/codecs.h index cc5e72b2850..c5aa177c665 100644 --- a/library/cpp/codecs/codecs.h +++ b/library/cpp/codecs/codecs.h @@ -2,7 +2,7 @@ #include "sample.h" -#include <util/generic/bt_exception.h> +#include <util/generic/yexception.h> #include <util/generic/hash.h> #include <util/generic/ptr.h> #include <util/generic/singleton.h> diff --git a/library/cpp/config/config.h b/library/cpp/config/config.h index 16d2d7edf93..2b53cca9525 100644 --- a/library/cpp/config/config.h +++ b/library/cpp/config/config.h @@ -11,7 +11,7 @@ #include <util/system/type_name.h> #include <util/generic/vector.h> #include <util/generic/yexception.h> -#include <util/generic/bt_exception.h> +#include <util/generic/yexception.h> #include <util/ysaveload.h> class IInputStream; diff --git a/library/cpp/json/writer/json_value.cpp b/library/cpp/json/writer/json_value.cpp index 6d57ef669a7..344a2cd1648 100644 --- a/library/cpp/json/writer/json_value.cpp +++ b/library/cpp/json/writer/json_value.cpp @@ -12,7 +12,7 @@ #include <util/string/vector.h> #include <util/system/yassert.h> #include <util/ysaveload.h> -#include <util/generic/bt_exception.h> +#include <util/generic/yexception.h> static bool AreJsonMapsEqual(const NJson::TJsonValue& lhs, const NJson::TJsonValue& rhs) { diff --git a/library/cpp/testing/benchmark/examples/main.cpp b/library/cpp/testing/benchmark/examples/main.cpp index ddd8b05ffc7..f3b737f1850 100644 --- a/library/cpp/testing/benchmark/examples/main.cpp +++ b/library/cpp/testing/benchmark/examples/main.cpp @@ -4,7 +4,7 @@ #include <util/generic/algorithm.h> #include <util/generic/vector.h> #include <util/generic/yexception.h> -#include <util/generic/bt_exception.h> +#include <util/generic/yexception.h> Y_CPU_BENCHMARK(F, iface) { TVector<size_t> x; diff --git a/library/cpp/testing/unittest/registar.cpp b/library/cpp/testing/unittest/registar.cpp index 675d1f60030..d48f13813e3 100644 --- a/library/cpp/testing/unittest/registar.cpp +++ b/library/cpp/testing/unittest/registar.cpp @@ -3,7 +3,7 @@ #include <library/cpp/diff/diff.h> #include <library/cpp/colorizer/colors.h> -#include <util/generic/bt_exception.h> +#include <util/generic/yexception.h> #include <util/random/fast.h> #include <util/string/printf.h> #include <util/system/backtrace.h> diff --git a/library/cpp/testing/unittest/registar.h b/library/cpp/testing/unittest/registar.h index 312796ccf03..c65c79e79f4 100644 --- a/library/cpp/testing/unittest/registar.h +++ b/library/cpp/testing/unittest/registar.h @@ -2,7 +2,7 @@ #include <library/cpp/dbg_output/dump.h> -#include <util/generic/bt_exception.h> +#include <util/generic/yexception.h> #include <util/generic/hash.h> #include <util/generic/intrlist.h> #include <util/generic/map.h> diff --git a/library/cpp/yson/node/node.h b/library/cpp/yson/node/node.h index 2e60dd1abd3..1bce18fed50 100644 --- a/library/cpp/yson/node/node.h +++ b/library/cpp/yson/node/node.h @@ -1,6 +1,6 @@ #pragma once -#include <util/generic/bt_exception.h> +#include <util/generic/yexception.h> #include <util/generic/cast.h> #include <util/generic/hash.h> #include <util/generic/vector.h> diff --git a/library/cpp/yson_pull/read_ops.h b/library/cpp/yson_pull/read_ops.h index 5c084983ead..c55b510b88f 100644 --- a/library/cpp/yson_pull/read_ops.h +++ b/library/cpp/yson_pull/read_ops.h @@ -3,7 +3,7 @@ #include "reader.h" #include <util/generic/maybe.h> -#include <util/generic/bt_exception.h> +#include <util/generic/yexception.h> #include <util/generic/yexception.h> #include <util/system/yassert.h> |