Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(272)

Unified Diff: PRESUBMIT.py

Issue 2456163002: Remove stl_util's STLDeleteContainerPointers. (Closed)
Patch Set: last few Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/containers/scoped_ptr_hash_map.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 83aca99c3978ba02e59da34b117337ae7a422ceb..b8a13c1957c663c85d1af042785a309c8c904ceb 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -317,15 +317,6 @@ _BANNED_CPP_FUNCTIONS = (
(),
),
(
- r'STLDeleteContainerPointers', # http://crbug.com/555865
- (
- 'This call is obsolete with C++ 11; create a container with owning',
- 'pointers instead (e.g. std::vector<std::unique_ptr<x>> ).',
- ),
- True,
- (),
- ),
- (
r'STLDeleteElements', # http://crbug.com/555865
(
'This call is obsolete with C++ 11; create a container with owning',
« no previous file with comments | « no previous file | base/containers/scoped_ptr_hash_map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698