| 34 | return DFHACK_GIT_DESCRIPTION; |
| 35 | } |
| 36 | const char* git_commit(bool short_hash) |
| 37 | { |
| 38 | static std::string shorty(DFHACK_GIT_COMMIT, 0, 7); |
| 39 | return short_hash ? shorty.c_str() : DFHACK_GIT_COMMIT; |
| 40 | } |
| 41 | const char *git_xml_commit() |
| 42 | { |
| 43 | return DFHACK_GIT_XML_COMMIT; |
no test coverage detected