Skip to content

Commit

Permalink
Adding version tag in printout
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Wardle committed Dec 14, 2023
1 parent b9538db commit ce02748
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bin/combine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@

using namespace std;

// Update whenever we have a new Tag
std::string combineTagString = "v9.1.0";
//

int main(int argc, char **argv) {
using namespace boost;
namespace po = boost::program_options;
Expand Down Expand Up @@ -147,6 +151,8 @@ int main(int argc, char **argv) {
splashFile.close();
} else {
std::cout << " <<< Combine >>> " << std::endl;
// UPDATE THIS TO THE LATEST TAG WHENEVER RELEASED
std::cout << Form(" <<< %s >>>",combineTagString.c_str() ) << std::endl;
}

// now search for algo, and add option
Expand Down

0 comments on commit ce02748

Please sign in to comment.