rewrite_to_chrome_style: UnresolvedLookupExpr rewrite is clobbering nested name specifiers |
||
Issue description
A trial run shows that UnresolvedLookupExprs are probably rewriting the wrong thing. An example fixup patch needed after running the tool across WTF:
template<size_t inlineCapacity>
String::String(const Vector<UChar, inlineCapacity>& vector)
- : impl_(vector.Size() ? Create::Create(vector.Data(), vector.Size()) : StringImpl::Empty())
+ : impl_(vector.Size() ? StringImpl::Create(vector.Data(), vector.Size()) : StringImpl::Empty())
{
}
,
Mar 28 2016
|
||
►
Sign in to add a comment |
||
Comment 1 by bugdroid1@chromium.org
, Mar 28 2016