Skip to content
Snippets Groups Projects
Commit 2cc6d1ae authored by Florian Pose's avatar Florian Pose
Browse files

Minor changes.

parent f0b09bbe
No related branches found
No related tags found
No related merge requests found
...@@ -47,24 +47,20 @@ ...@@ -47,24 +47,20 @@
* Overall macros * Overall macros
*****************************************************************************/ *****************************************************************************/
/** /** Helper macro for EC_STR(), literates a macro argument.
Helper macro for EC_STR(), literates a macro argument. *
\param X argument to literate. * \param X argument to literate.
*/ */
#define EC_LIT(X) #X #define EC_LIT(X) #X
/** /** Converts a macro argument to a string.
Converts a macro argument to a string. *
\param X argument to stringify. * \param X argument to stringify.
*/ */
#define EC_STR(X) EC_LIT(X) #define EC_STR(X) EC_LIT(X)
/** /** Master version string
Master version string */
*/
#define EC_MASTER_VERSION VERSION " " BRANCH " r" EC_STR(SVNREV) #define EC_MASTER_VERSION VERSION " " BRANCH " r" EC_STR(SVNREV)
/*****************************************************************************/ /*****************************************************************************/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment