summaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorMikhail Galanin <[email protected]>2025-12-12 19:15:51 +0300
committerrobot-piglet <[email protected]>2025-12-12 20:18:10 +0300
commitd626ff85dc5f45ea652683e359e6fd4013ac5a34 (patch)
tree5d697c0e0d531e2ce95fcc625969a1fc0f5ba2ea /library/cpp
parent65664c12b02028c8811bf6090607e3011761392a (diff)
Remove extra slash from include
--- > If this change is not needed to be mentioned in release notes then just remove changelog entry. > If this change is needed to be mentioned in release notes then please add changelog entry at the end of pull request description, using this format: > > * Changelog entry > Type: ? # fix/feature (Select one value, example: `Type: fix`) > Component: ? # master/proxy/scheduler/dynamic-tables/controller-agent/queue-agent/query-tracker > # map-reduce/misc-server/odin/spyt/chyt/strawberry/python-sdk/python-yson/python-rpc-bindings/java-sdk > # cpp-sdk/go-sdk/cms/excel/cron/microservices (Select one value, example: `Component: scheduler`) > Description of this change which will be added in release notes. * Changelog entry Type: fix Component: logging `clang` gets confused with the extra slash and keeps failing ``` In file included from /workspace/third_party/ytsaurus-cpp-sdk/library/cpp/yt/logging/plain_text_formatter/formatter.h:5: /workspace/third_party/ytsaurus-cpp-sdk/library/cpp/yt/logging//logger.h:81:1: error: redefinition of 'GetEnumTraitsImpl' ... /workspace/third_party/ytsaurus-cpp-sdk/library/cpp/yt/logging/logger.h:81:1: note: previous definition is here 81 | DEFINE_ENUM(ELogMessageKind, ``` --- Pull Request resolved: https://github.com/ytsaurus/ytsaurus/pull/1535 Co-authored-by: Mikhail Galanin <[email protected]> commit_hash:f14a084dba2c641ddcf218c76b8f5a9725579268
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yt/logging/plain_text_formatter/formatter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yt/logging/plain_text_formatter/formatter.h b/library/cpp/yt/logging/plain_text_formatter/formatter.h
index 1c35c7c5ee0..80518506a73 100644
--- a/library/cpp/yt/logging/plain_text_formatter/formatter.h
+++ b/library/cpp/yt/logging/plain_text_formatter/formatter.h
@@ -2,7 +2,7 @@
#include <library/cpp/yt/string/raw_formatter.h>
-#include <library/cpp/yt/logging//logger.h>
+#include <library/cpp/yt/logging/logger.h>
namespace NYT::NLogging {