From e5a87a597443e633fa53c764bb23f66632f80c65 Mon Sep 17 00:00:00 2001 From: kjellander Date: Wed, 27 Apr 2016 02:32:12 -0700 Subject: [PATCH] Disable whitespace/operators lint check. It gives false positives when using the move operator (confuses them with logical And operators). See http://crbug.com/464813 for more details. NOTRY=True Review URL: https://codereview.webrtc.org/1917223003 Cr-Commit-Position: refs/heads/master@{#12525} --- PRESUBMIT.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 05f62cffaf..b09fc14cef 100755 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -38,8 +38,11 @@ CPPLINT_DIRS = [ # - build/c++11 : Rvalue ref checks are unreliable (false positives), # include file and feature blacklists are # google3-specific. +# - whitespace/operators: Same as above (doesn't seem sufficient to eliminate +# all move-related errors). BLACKLIST_LINT_FILTERS = [ '-build/c++11', + '-whitespace/operators', ] # List of directories of "supported" native APIs. That means changes to headers