Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
SpartanJ committed Nov 26, 2024
1 parent 0e97236 commit 762dd54
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tools/ecode/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ Uint64 Version::getVersionNumFromTag( const std::string& tag ) {
String::fromString( ver.minor, versionPart[1] ) &&
String::fromString( ver.patch, versionPart[2] ) ) {
return ECODE_VERSIONNUM( ver.major, ver.minor, ver.patch,
0 /* tags don't count commits */ );
/* tags don't count commits, all stable releases will
always have 9999 as commit number */
9999 );
}
}
}
Expand Down

0 comments on commit 762dd54

Please sign in to comment.