Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
adding sleep sets to reduction techniques
[simgrid.git] / src / mc / inspect / mc_dwarf_attrnames.cpp
index 018d9c27fa341b47bb757c09af3d8cb9f2ade142..e050f4699da8e117c598d63c86c1c215265e0048 100644 (file)
@@ -1,16 +1,15 @@
-/* Copyright (c) 2014-2019. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2014-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 /* Warning: autogenerated, do not edit! */
 
+#include "src/mc/inspect/mc_dwarf.hpp"
+
 #include <string>
 #include <unordered_map>
 
-#include "src/mc/mc_dwarf.hpp"
-
 namespace {
 const std::unordered_map<int, const char*> attrname_map = {
     {0x01, "DW_AT_sibling"},
@@ -157,8 +156,7 @@ const std::unordered_map<int, const char*> attrname_map = {
 };
 }
 
-namespace simgrid {
-namespace dwarf {
+namespace simgrid::dwarf {
 
 /** @brief Get the name of an attribute (DW_AT_*) from its code
  *
@@ -172,5 +170,4 @@ const char* attrname(int attr)
   return name == attrname_map.end() ? "DW_AT_unknown" : name->second;
 }
 
-} // namespace dwarf
-} // namespace simgrid
+} // namespace simgrid::dwarf