X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/765ca7ac3efd59d260163fa0a7d34ee2eb674f47..b13a264343d5efaa1eb9cec5cf0e1dd588efb6f0:/src/xbt/backtrace.cpp diff --git a/src/xbt/backtrace.cpp b/src/xbt/backtrace.cpp index 022ae52a55..c05076a8d9 100644 --- a/src/xbt/backtrace.cpp +++ b/src/xbt/backtrace.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2005-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2005-2018. 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. */ @@ -22,12 +22,8 @@ #include "src/internal_config.h" -extern "C" { - XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_backtrace, xbt, "Backtrace"); -} - static bool startWith(std::string str, const char* prefix) { return strncmp(str.c_str(), prefix, strlen(prefix)) == 0;