Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove useless statements
authorTom Cornebize <tom.cornebize@intel.com>
Tue, 21 Jun 2022 13:35:27 +0000 (15:35 +0200)
committerTom Cornebize <tom.cornebize@intel.com>
Tue, 21 Jun 2022 13:35:27 +0000 (15:35 +0200)
include/xbt/asserts.hpp

index 5a82ccc..d018d04 100644 (file)
@@ -6,12 +6,7 @@
 #ifndef SIMGRID_XBT_ASSERTS_HPP
 #define SIMGRID_XBT_ASSERTS_HPP
 
-#include <exception>
 #include <simgrid/Exception.hpp>
-#include <xbt/log.h>
-
-namespace simgrid {
-namespace xbt {
 
 /**
  * @brief Those are the SimGrid version of the good ol' assert macro.
@@ -37,8 +32,4 @@ namespace xbt {
     }                                                                                                                  \
   } while (0)
 
-
-} // namespace xbt
-} // namespace simgrid
-
 #endif