From d1193addae7e5a24dc867f9946681ef0781a766f Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Tue, 12 Jan 2016 11:27:55 -0800 Subject: [PATCH 1/1] Fix compile error with use of 'typename' outside of template. elfcpp/ * elfcpp_internal.h (Mips64_rel_data, Mips64_rela_data): Remove 'typename'. --- elfcpp/ChangeLog | 5 +++++ elfcpp/elfcpp_internal.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/elfcpp/ChangeLog b/elfcpp/ChangeLog index 198eb92..caccf3e 100644 --- a/elfcpp/ChangeLog +++ b/elfcpp/ChangeLog @@ -1,3 +1,8 @@ +2016-01-12 H.J. Lu + + * elfcpp_internal.h (Mips64_rel_data, Mips64_rela_data): Remove + 'typename'. + 2016-01-11 Cary Coutant * elfcpp.h (Mips64_rel, Mips64_rel_write): New classes. diff --git a/elfcpp/elfcpp_internal.h b/elfcpp/elfcpp_internal.h index edca55f..a5d647f 100644 --- a/elfcpp/elfcpp_internal.h +++ b/elfcpp/elfcpp_internal.h @@ -184,7 +184,7 @@ struct Rela_data struct Mips64_rel_data { - typename Elf_types<64>::Elf_Addr r_offset; + Elf_types<64>::Elf_Addr r_offset; Elf_Word r_sym; unsigned char r_ssym; unsigned char r_type3; @@ -194,7 +194,7 @@ struct Mips64_rel_data struct Mips64_rela_data { - typename Elf_types<64>::Elf_Addr r_offset; + Elf_types<64>::Elf_Addr r_offset; Elf_Word r_sym; unsigned char r_ssym; unsigned char r_type3; -- 2.7.4