X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/65beede857f93e33c96e544f76b93793c973dc10..edada81d50549499871369f63a5ac01d652b283e:/include/xbt/log.hpp?ds=sidebyside diff --git a/include/xbt/log.hpp b/include/xbt/log.hpp index 3f74fb55b3..50e5ec6458 100644 --- a/include/xbt/log.hpp +++ b/include/xbt/log.hpp @@ -1,15 +1,18 @@ -/* Copyright (c) 2016-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2021. 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. */ +#ifndef SIMGRID_XBT_LOG_HPP +#define SIMGRID_XBT_LOG_HPP + #include #include namespace simgrid { namespace xbt { -/** Display informations about an exception +/** Display information about an exception * * We display: the exception type, name, attached backtraces (if any) and * the nested exception (if any). @@ -19,5 +22,8 @@ namespace xbt { XBT_PUBLIC void log_exception(e_xbt_log_priority_t priority, const char* context, std::exception const& exception); XBT_PUBLIC void install_exception_handler(); -} -} + +} // namespace xbt +} // namespace simgrid + +#endif \ No newline at end of file