X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Foptional.h;h=faa64bf604e424adc2aefcda50b044c028c0a507;hp=0d99fe3224f4e419679d22627a0f4899f0c2a9d2;hb=f3db82befcfc3733e2a1c78c7432b72a914e8893;hpb=3da864a94ccc39239fea82c4803b58b6b56a1003 diff --git a/src/common/optional.h b/src/common/optional.h index 0d99fe322..faa64bf60 100644 --- a/src/common/optional.h +++ b/src/common/optional.h @@ -62,7 +62,7 @@ * wrapped optional types. It is meant to be used with PODs. */ #define LTTNG_OPTIONAL_GET(optional) \ - ({ \ + ({ \ assert((optional).is_set); \ (optional).value; \ })