commit | 3edc914481ff715869bd27903f2f9884e6d017da | [log] [tgz] |
---|---|---|
author | vmpstr <[email protected]> | Sat Feb 27 01:21:52 2016 |
committer | Commit bot <[email protected]> | Sat Feb 27 01:23:32 2016 |
tree | 2a63bf039e1c2d2768a9bb1955c77843d880b1e8 | |
parent | fa093a8177047c4275f104122b823950d1699d45 [diff] [blame] |
extensions: Add out-of-line copy ctors for complex classes. This patch adds out of line copy constructors for classes that our clang-plugin considers heavy. This is an effort to enable copy constructor checks by default. BUG=436357 [email protected], [email protected], [email protected] Review URL: https://codereview.chromium.org/1724293002 Cr-Commit-Position: refs/heads/master@{#378054}
diff --git a/extensions/browser/error_map.cc b/extensions/browser/error_map.cc index dcf0101..5f94e34 100644 --- a/extensions/browser/error_map.cc +++ b/extensions/browser/error_map.cc
@@ -37,6 +37,8 @@ restrict_to_incognito(restrict_to_incognito) { } +ErrorMap::Filter::Filter(const Filter& other) = default; + ErrorMap::Filter::~Filter() { }