X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9cca09ad88fcaeb49f2637de97df519c3920aaa4..1bd1598e76058781ce535546a31555fe753f55a5:/teshsuite/mc/dwarf/dwarf.cpp diff --git a/teshsuite/mc/dwarf/dwarf.cpp b/teshsuite/mc/dwarf/dwarf.cpp index 0bc60e6893..c1eb4fa0d9 100644 --- a/teshsuite/mc/dwarf/dwarf.cpp +++ b/teshsuite/mc/dwarf/dwarf.cpp @@ -25,7 +25,8 @@ int test_some_array[4][5][6]; struct some_struct { int first; int second[4][5]; -} test_some_struct; +}; +some_struct test_some_struct; static simgrid::mc::Type* find_type_by_name(simgrid::mc::ObjectInformation* info, const char* name) { @@ -109,7 +110,7 @@ struct s_foo { int i; }; -static void test_type_by_name(simgrid::mc::RemoteClient& process, s_foo my_foo) +static void test_type_by_name(simgrid::mc::RemoteClient& process, s_foo /*my_foo*/) { assert(process.binary_info->full_types_by_name.find("struct s_foo") != process.binary_info->full_types_by_name.end()); }