diff options
| author | babenko <[email protected]> | 2026-06-14 13:52:09 +0300 |
|---|---|---|
| committer | babenko <[email protected]> | 2026-06-14 14:11:09 +0300 |
| commit | 79d1d1c539b166a3e32ad807ac76160aba756366 (patch) | |
| tree | c648a9b9cf06bf88bd9588a5b5bc43f7ace2ac2a /yt/cpp/mapreduce/interface | |
| parent | 6002a4a1e4bf934b75105289fe2ddf15b6b0422e (diff) | |
YT-28419: Drop redundant guard #undef from -inl.h files
The `.h` owns the #undef of its `<NAME>_INL_H_` guard; duplicating it in the
`-inl.h` is redundant. Align the minority that did so with the majority.
commit_hash:51be59f9d1b93ad152ed5cb07c76088edd6c3e36
Diffstat (limited to 'yt/cpp/mapreduce/interface')
| -rw-r--r-- | yt/cpp/mapreduce/interface/io-inl.h | 1 | ||||
| -rw-r--r-- | yt/cpp/mapreduce/interface/operation-inl.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/yt/cpp/mapreduce/interface/io-inl.h b/yt/cpp/mapreduce/interface/io-inl.h index ac1464f5b98..3ff090d8eae 100644 --- a/yt/cpp/mapreduce/interface/io-inl.h +++ b/yt/cpp/mapreduce/interface/io-inl.h @@ -4,7 +4,6 @@ #error "Direct inclusion of this file is not allowed, use io.h" #include "io.h" // For the sake of sane code completion. #endif -#undef IO_INL_H_ #include "finish_or_die.h" diff --git a/yt/cpp/mapreduce/interface/operation-inl.h b/yt/cpp/mapreduce/interface/operation-inl.h index 462cbfd516d..9c99e9ca9f1 100644 --- a/yt/cpp/mapreduce/interface/operation-inl.h +++ b/yt/cpp/mapreduce/interface/operation-inl.h @@ -4,7 +4,6 @@ #error "Direct inclusion of this file is not allowed, use operation.h" #include "operation.h" #endif -#undef OPERATION_INL_H_ #include "errors.h" |
