X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a09110fd2917c2121b096754868decbfd6582866..f973433226af2e2e3059b62578bb0f3b215380fb:/include/xbt/asserts.hpp diff --git a/include/xbt/asserts.hpp b/include/xbt/asserts.hpp index 84f647a047..ab9de25156 100644 --- a/include/xbt/asserts.hpp +++ b/include/xbt/asserts.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2016-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2023. 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. */ @@ -27,7 +27,7 @@ #define _xbt_enforce_ARG1(cond) _xbt_enforce_ARGN((cond), "Assertion %s failed", #cond) #define _xbt_enforce_ARGN(cond, ...) \ do { \ - if (!(cond)) { \ + if (not(cond)) { \ throw simgrid::AssertionError(XBT_THROW_POINT, xbt::string_printf(__VA_ARGS__)); \ } \ } while (0)