Skip to content

Commit

Permalink
Updated TRestVersion.h to v2.2.24
Browse files Browse the repository at this point in the history
  • Loading branch information
jgalan committed Dec 25, 2020
1 parent 83d8946 commit c865cb4
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions source/restcore/inc/TRestVersion.h
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
#ifndef REST_Version
#define REST_Version
/* Version information automatically generated by installer. */ /*
* These macros can be used in the following
* way:
*
* #if REST_VERSION_CODE >=
* REST_VERSION(2,23,4) #include <newheader.h>
* #else
* #include <oldheader.h>
* #endif
*
*/
#define REST_RELEASE "2.2.23"
#define REST_RELEASE_DATE "Sat Dec 12"
#define REST_RELEASE_TIME "15:48:32 CET 2020"
#define REST_GIT_COMMIT "7a53c33f"
#define REST_VERSION_CODE 131607
#define REST_VERSION(a, b, c) (((a) << 16) + ((b) << 8) + (c))
/* Version information automatically generated by installer. *//*
* These macros can be used in the following way:
*
* #if REST_VERSION_CODE >= REST_VERSION(2,23,4)
* #include <newheader.h>
* #else
* #include <oldheader.h>
* #endif
*
*/
#define REST_RELEASE "2.2.24"
#define REST_RELEASE_DATE "Fri Dec 25"
#define REST_RELEASE_TIME "11:08:32 CET 2020"
#define REST_GIT_COMMIT "83d89462"
#define REST_VERSION_CODE 131608
#define REST_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
#define REST_SCHEMA_EVOLUTION "ON"
#endif

0 comments on commit c865cb4

Please sign in to comment.