diff options
| author | gvit <[email protected]> | 2022-09-09 22:44:37 +0300 | 
|---|---|---|
| committer | gvit <[email protected]> | 2022-09-09 22:44:37 +0300 | 
| commit | 21c067632afdb06d2eac52b071552f469ce738af (patch) | |
| tree | fa385360e593ee42f8d4e2fefda4b5ec1fc7ed40 /library/cpp/monlib | |
| parent | 2f1df3252e615c261b7ad6b5e206c358a11791b1 (diff) | |
remove macros clash with absl libraries
Diffstat (limited to 'library/cpp/monlib')
| -rw-r--r-- | library/cpp/monlib/dynamic_counters/page.cpp | 4 | ||||
| -rw-r--r-- | library/cpp/monlib/service/pages/templates.h | 6 | 
2 files changed, 2 insertions, 8 deletions
| diff --git a/library/cpp/monlib/dynamic_counters/page.cpp b/library/cpp/monlib/dynamic_counters/page.cpp index f80cc5ea049..f2fdd617108 100644 --- a/library/cpp/monlib/dynamic_counters/page.cpp +++ b/library/cpp/monlib/dynamic_counters/page.cpp @@ -123,7 +123,7 @@ void TDynamicCountersPage::BeforePre(IMonHttpRequest& request) {              out << " for Solomon";          } -        H5() { +        TAG(TH5) {              out << "Counters subgroups";          }          UL() { @@ -136,7 +136,7 @@ void TDynamicCountersPage::BeforePre(IMonHttpRequest& request) {              });          } -        H4() { +        TAG(TH4) {              out << "Counters as text";          }      } diff --git a/library/cpp/monlib/service/pages/templates.h b/library/cpp/monlib/service/pages/templates.h index 0249807d5f7..ab1d91c54e8 100644 --- a/library/cpp/monlib/service/pages/templates.h +++ b/library/cpp/monlib/service/pages/templates.h @@ -55,17 +55,11 @@  #define PARA() TAG(TPara)  #define PARA_CLASS(cls) TAG_CLASS(TPara, cls) -#define H1() TAG(TH1)  #define H1_CLASS(cls) TAG_CLASS(TH1, cls) -#define H2() TAG(TH2)  #define H2_CLASS(cls) TAG_CLASS(TH2, cls) -#define H3() TAG(TH3)  #define H3_CLASS(cls) TAG_CLASS(TH3, cls) -#define H4() TAG(TH4)  #define H4_CLASS(cls) TAG_CLASS(TH4, cls) -#define H5() TAG(TH5)  #define H5_CLASS(cls) TAG_CLASS(TH5, cls) -#define H6() TAG(TH6)  #define H6_CLASS(cls) TAG_CLASS(TH6, cls)  #define SMALL() TAG(TSMALL) | 
