Skip to content

Commit

Permalink
Fix spelling of ROOT_VERSION_CODE.
Browse files Browse the repository at this point in the history
  • Loading branch information
Axel-Naumann committed Sep 29, 2016
1 parent e1bfd91 commit 145097d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/base/inc/RConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -460,22 +460,22 @@
#define _R_DEPRECATED_REMOVE_NOW(REASON) __attribute__((REMOVE_THIS_NOW))

/* To be removed by 6.10 */
#if R__VERSION_CODE < ROOT_VERSION(6,9,0)
#if ROOT_VERSION_CODE < ROOT_VERSION(6,9,0)
# define _R__DEPRECATED_610(REASON) _R__DEPRECATED_LATER(REASON)
#else
# define _R__DEPRECATED_610(REASON) _R_DEPRECATED_REMOVE_NOW(REASON)
#endif


/* To be removed by 6.12 */
#if R__VERSION_CODE < ROOT_VERSION(6,11,0)
#if ROOT_VERSION_CODE < ROOT_VERSION(6,11,0)
# define _R__DEPRECATED_612(REASON) _R__DEPRECATED_LATER(REASON)
#else
# define _R__DEPRECATED_612(REASON) _R_DEPRECATED_REMOVE_NOW(REASON)
#endif

/* To be removed by 7.00 */
#if R__VERSION_CODE < ROOT_VERSION(6,99,0)
#if ROOT_VERSION_CODE < ROOT_VERSION(6,99,0)
# define _R__DEPRECATED_700(REASON) _R__DEPRECATED_LATER(REASON)
#else
# define _R__DEPRECATED_700(REASON) _R_DEPRECATED_REMOVE_NOW(REASON)
Expand Down

0 comments on commit 145097d

Please sign in to comment.