Commit 17c3e3cb authored by aa@chromium.org's avatar aa@chromium.org

Remove explicit marker from ProcessMap.

Older gcc versions apparently do not support this when used with STL.

Review URL: http://codereview.chromium.org/8771061

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113451 0039d316-1c4b-4281-b951-d872f2087c98
parent a69ca4b9
......@@ -11,7 +11,9 @@ struct ProcessMap::Item {
Item() {
}
explicit Item(const ProcessMap::Item& other)
// Purposely implicit constructor needed on older gcc's. See:
// http://codereview.chromium.org/8769022/
Item(const ProcessMap::Item& other)
: extension_id(other.extension_id),
process_id(other.process_id),
site_instance_id(other.site_instance_id) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment