X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9dbeb2372ad9a123d0558132ebb6e003e10aa641..909864a6927db2f6105ab740ad185de7aa7e5a71:/src/mc/mc_dwarf_attrnames.cpp diff --git a/src/mc/mc_dwarf_attrnames.cpp b/src/mc/mc_dwarf_attrnames.cpp index 0462c0db81..a1e00e5725 100644 --- a/src/mc/mc_dwarf_attrnames.cpp +++ b/src/mc/mc_dwarf_attrnames.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014. The SimGrid Team. +/* Copyright (c) 2014-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -6,17 +6,21 @@ /* Warning: autogenerated, do not edit! */ -#include #include +#include + +#include -#include "mc_object_info.h" +namespace simgrid { +namespace dwarf { /** \brief Get the name of an attribute (DW_AT_*) from its code * * \param attr attribute code (see the DWARF specification) * \return name of the attribute */ -const char *MC_dwarf_attrname(int attr) +XBT_PRIVATE +const char *attrname(int attr) { switch (attr) { case 0x01: return "DW_AT_sibling"; @@ -162,3 +166,6 @@ const char *MC_dwarf_attrname(int attr) return "DW_AT_unknown"; } } + +} +}