From: Petr Machata Date: Mon, 18 Apr 2011 14:11:29 +0000 (+0200) Subject: dwarflint: where.h -> where.hh X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac127ba4ca6b250c845385fc407d773ecebcfefa;p=thirdparty%2Felfutils.git dwarflint: where.h -> where.hh --- diff --git a/dwarflint/Makefile.am b/dwarflint/Makefile.am index c8e5c833f..995acfd62 100644 --- a/dwarflint/Makefile.am +++ b/dwarflint/Makefile.am @@ -70,7 +70,7 @@ dwarflint_SOURCES = \ reloc.cc reloc.hh \ section_id.cc section_id.hh \ sections.cc sections.hh sections_i.hh \ - where.cc where.h \ + where.cc where.hh \ wrap.cc wrap.hh \ \ check_debug_abbrev.cc check_debug_abbrev.hh check_debug_abbrev_i.hh \ @@ -101,7 +101,7 @@ locstats_SOURCES = \ option.cc option.hh option_i.hh \ section_id.cc section_id.hh \ pri.cc pri.hh \ - where.cc where.h + where.cc where.hh tests_test_coverage_SOURCES = tests/test-coverage.cc coverage.cc pri.cc \ ../src/dwarfstrings.c diff --git a/dwarflint/addr-record.hh b/dwarflint/addr-record.hh index 76baa70d1..16246e0f8 100644 --- a/dwarflint/addr-record.hh +++ b/dwarflint/addr-record.hh @@ -30,7 +30,7 @@ #include #include -#include "where.h" +#include "where.hh" /* Functions and data structures for address record handling. We use that to check that all DIE references actually point to an diff --git a/dwarflint/checked_read.hh b/dwarflint/checked_read.hh index 8cdecfeaf..f9b5d1312 100644 --- a/dwarflint/checked_read.hh +++ b/dwarflint/checked_read.hh @@ -27,7 +27,7 @@ #define DWARFLINT_CHECKED_READ_HH #include "readctx.hh" -#include "where.h" +#include "where.hh" #include "dwarf_version.hh" enum error_code diff --git a/dwarflint/checks.hh b/dwarflint/checks.hh index a280dfd63..d92f4f2d1 100644 --- a/dwarflint/checks.hh +++ b/dwarflint/checks.hh @@ -26,7 +26,7 @@ #ifndef DWARFLINT_CHECKS_HH #define DWARFLINT_CHECKS_HH -#include "where.h" +#include "where.hh" #include "dwarflint.hh" #include "checkdescriptor.hh" #include "messages.hh" diff --git a/dwarflint/die_locus.hh b/dwarflint/die_locus.hh index 87f0a0b47..44b829ed8 100644 --- a/dwarflint/die_locus.hh +++ b/dwarflint/die_locus.hh @@ -26,7 +26,7 @@ #ifndef _DWARFLINT_DIE_LOCUS_H_ #define _DWARFLINT_DIE_LOCUS_H_ -#include "where.h" +#include "where.hh" #include "../libdw/c++/dwarf" class cu_locus diff --git a/dwarflint/messages.hh b/dwarflint/messages.hh index fe9a9d154..6ce527bae 100644 --- a/dwarflint/messages.hh +++ b/dwarflint/messages.hh @@ -26,7 +26,7 @@ #ifndef DWARFLINT_MESSAGES_HH #define DWARFLINT_MESSAGES_HH -#include "where.h" +#include "where.hh" #include "libdw.h" #include #include diff --git a/dwarflint/misc.hh b/dwarflint/misc.hh index c75ecde24..b86cc1897 100644 --- a/dwarflint/misc.hh +++ b/dwarflint/misc.hh @@ -27,7 +27,7 @@ #define DWARFLINT_MISC_HH #include -#include "where.h" +#include "where.hh" extern "C" { diff --git a/dwarflint/reloc.hh b/dwarflint/reloc.hh index db1168aa5..65effb3cc 100644 --- a/dwarflint/reloc.hh +++ b/dwarflint/reloc.hh @@ -26,7 +26,7 @@ #ifndef DWARFLINT_RELOC_H #define DWARFLINT_RELOC_H -#include "where.h" +#include "where.hh" #include "elf_file_i.hh" #include #include diff --git a/dwarflint/where.cc b/dwarflint/where.cc index d9510f958..9a01216e5 100644 --- a/dwarflint/where.cc +++ b/dwarflint/where.cc @@ -23,7 +23,7 @@ Network licensing program, please visit www.openinventionnetwork.com . */ -#include "where.h" +#include "where.hh" #include "section_id.hh" #include diff --git a/dwarflint/where.h b/dwarflint/where.hh similarity index 97% rename from dwarflint/where.h rename to dwarflint/where.hh index fdb5be0de..f664c4083 100644 --- a/dwarflint/where.h +++ b/dwarflint/where.hh @@ -23,8 +23,8 @@ Network licensing program, please visit www.openinventionnetwork.com . */ -#ifndef DWARFLINT_WHERE_H -#define DWARFLINT_WHERE_H +#ifndef DWARFLINT_WHERE_HH +#define DWARFLINT_WHERE_HH #include "section_id.hh" @@ -155,4 +155,4 @@ operator << (std::ostream &os, locus const &loc) return os; } -#endif//DWARFLINT_WHERE_H +#endif//DWARFLINT_WHERE_HH