X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/364eee0fc6ab77fddc5437ac273527bd27711724..014e302e2156e34a1157c49f6347999ff20b10aa:/teshsuite/mc/dwarf/dwarf.cpp diff --git a/teshsuite/mc/dwarf/dwarf.cpp b/teshsuite/mc/dwarf/dwarf.cpp index 0bc60e6893..deef0ba4e3 100644 --- a/teshsuite/mc/dwarf/dwarf.cpp +++ b/teshsuite/mc/dwarf/dwarf.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2017. The SimGrid Team. +/* Copyright (c) 2014-2018. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -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()); }