From: Niklas Fehn Date: Thu, 10 Feb 2022 10:15:37 +0000 (+0100) Subject: Document macro DEAL_II_VERSION_GTE X-Git-Tag: v9.4.0-rc1~513^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd1040f82df02aa019c00e4145395714865f697b;p=dealii.git Document macro DEAL_II_VERSION_GTE --- diff --git a/include/deal.II/base/config.h.in b/include/deal.II/base/config.h.in index 89e2dc3552..0161a36043 100644 --- a/include/deal.II/base/config.h.in +++ b/include/deal.II/base/config.h.in @@ -252,6 +252,12 @@ * deal.II: */ +/** + * Returns true if the used deal.II version is greater or equal than the + * version specified by the three arguments. The internal implementation + * assumes that the number of minor and subminor versions is not larger + * than 100. + */ #define DEAL_II_VERSION_GTE(major,minor,subminor) \ ((DEAL_II_VERSION_MAJOR * 10000 + \ DEAL_II_VERSION_MINOR * 100 + \