Code cleanup & factoring of commands module.
[rpn.git] / src / Version.cpp
blobb6089aef302aaffae9370d4176e93badf66f58bc
1 /* This version of the getVersion() function is used for platforms that
2 * can't get extra version information from a Git repository.
3 */
5 #ifdef RPN_GITLESS
6 namespace RPN
8 const char *getVersion()
10 return "gitless";
13 #endif