Skip to content

Commit

Permalink
[ItaniumABILanguageRuntime] Remove an unneccesary 'typename' keyword.
Browse files Browse the repository at this point in the history
Summary: This will get the windows bots going.

Test Plan: Build LLDB on Windows.

Reviewers: zturner

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D8934

llvm-svn: 234527
  • Loading branch information
Siva Chandra committed Apr 9, 2015
1 parent 0a2e84c commit bba0eaa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ ItaniumABILanguageRuntime::GetAlternateManglings(const ConstString &mangled, std

alternates.clear();
const char *mangled_cstr = mangled.AsCString();
for (typename std::map<ConstString, std::vector<ConstString> >::iterator it = s_alternate_mangling_prefixes.begin();
for (std::map<ConstString, std::vector<ConstString> >::iterator it = s_alternate_mangling_prefixes.begin();
it != s_alternate_mangling_prefixes.end();
++it)
{
Expand Down

0 comments on commit bba0eaa

Please sign in to comment.