mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 22:42:26 +00:00
11 lines
215 B
C++
11 lines
215 B
C++
|
#ifndef BRACEMACRO_HH
|
||
|
#define BRACEMACRO_HH
|
||
|
|
||
|
#if (LIBCLANG_MAJOR > 3) || ((LIBCLANG_MAJOR == 3) && (LIBCLANG_MINOR >= 9))
|
||
|
#define RBRACELOC getBraceRange().getEnd
|
||
|
#else
|
||
|
#define RBRACELOC getRBraceLoc
|
||
|
#endif
|
||
|
|
||
|
#endif
|