diff options
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/checkers/readability/redundant-parentheses.cpp')
| -rw-r--r-- | clang-tools-extra/test/clang-tidy/checkers/readability/redundant-parentheses.cpp | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/clang-tools-extra/test/clang-tidy/checkers/readability/redundant-parentheses.cpp b/clang-tools-extra/test/clang-tidy/checkers/readability/redundant-parentheses.cpp index 926cb11..c77608c 100644 --- a/clang-tools-extra/test/clang-tidy/checkers/readability/redundant-parentheses.cpp +++ b/clang-tools-extra/test/clang-tidy/checkers/readability/redundant-parentheses.cpp @@ -62,3 +62,12 @@ void exceptions() {    // CHECK-MESSAGES: :[[@LINE-1]]:11: warning: redundant parentheses around expression [readability-redundant-parentheses]    // CHECK-FIXES:    alignof(3);  } + +namespace std { +  template<class T> T max(T, T); +  template<class T> T min(T, T); +} // namespace std +void ignoreStdMaxMin() { +  (std::max)(1,2); +  (std::min)(1,2); +} | 
