YAC 3.12.0
Yet Another Coupler
Loading...
Searching...
No Matches
yac_version_check.h File Reference
#include "yac_config.h"
Include dependency graph for yac_version_check.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define YAC_VERSION_GREATER_EQUAL(major, minor, patch)
 

Macro Definition Documentation

◆ YAC_VERSION_GREATER_EQUAL

#define YAC_VERSION_GREATER_EQUAL ( major,
minor,
patch )
Value:
( \
(YAC_VERSION_MAJOR > major) \
|| ( \
(YAC_VERSION_MAJOR == major) && \
(YAC_VERSION_MINOR > minor) \
) \
|| ( \
(YAC_VERSION_MAJOR == major) && \
(YAC_VERSION_MINOR == minor) && \
(YAC_VERSION_PATCH >= patch) \
) \
)

Definition at line 6 of file yac_version_check.h.