Remove runtime/references check from cpplint config.

Bug: webrtc:11630
Change-Id: I054b6b14b5784bfb5a44941595e2796031fc356e
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/176328
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#31393}
This commit is contained in:
Mirko Bonadei 2020-05-29 15:23:09 +02:00 committed by Commit Bot
parent b59f337fbd
commit e92e286afb

View file

@ -47,10 +47,13 @@ CPPLINT_BLACKLIST = [
# - build/c++11 : Rvalue ref checks are unreliable (false positives),
# include file and feature blacklists are
# google3-specific.
# - runtime/references : Mutable references are not banned by the Google
# C++ style guide anymore (starting from May 2020).
# - whitespace/operators: Same as above (doesn't seem sufficient to eliminate
# all move-related errors).
BLACKLIST_LINT_FILTERS = [
'-build/c++11',
'-runtime/references',
'-whitespace/operators',
]