repo.or.cz
/
rpn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Code cleanup & factoring of commands module.
[rpn.git]
/
src
/
Version.cpp
blob
b6089aef302aaffae9370d4176e93badf66f58bc
1
/* This version of the getVersion() function is used for platforms that
2
* can't get extra version information from a Git repository.
3
*/
4
5
#ifdef RPN_GITLESS
6
namespace
RPN
7
{
8
const char
*
getVersion
()
9
{
10
return
"gitless"
;
11
}
12
}
13
#endif