Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Comment unused function parameter.
[simgrid.git] / src / xbt / memory_map.hpp
index e4e138d6d106d70bb0450b902beb15ae736428b7..3bf3d68869b5442cd1d685ce98ac8a6afe1ab04e 100644 (file)
@@ -19,7 +19,8 @@ namespace xbt {
 
 /** An virtual memory map entry from /proc/$pid/maps */
 struct VmMap {
-  std::uint64_t start_addr, end_addr;
+  std::uint64_t start_addr;
+  std::uint64_t end_addr;
   int prot;                     /* Memory protection */
   int flags;                    /* Additional memory flags */
   std::uint64_t offset;         /* Offset in the file/whatever */