Skip to content

Commit

Permalink
Merge pull request #87 from njoy/bugfix/MATXSR
Browse files Browse the repository at this point in the history
Bugfix/matxsr
  • Loading branch information
jlconlin authored May 29, 2019
2 parents 6512f1e + 5d1697a commit 2e68016
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dependencies/ENDFtk
Submodule ENDFtk updated 371 files
2 changes: 1 addition & 1 deletion dependencies/utility
3 changes: 2 additions & 1 deletion src/njoy21.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
#define NJOY21

#include <variant>
#include <map>


#ifdef USING_CPP17
#if __cplusplus >= 201703L
#include <optional>
#else
#include <experimental/optional>
Expand Down
2 changes: 1 addition & 1 deletion src/njoy21/Version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class Version{
// Change whenever new capability is implemented
static constexpr int minorVersion{0};
// Change whenever merge to master branch is done
static constexpr int patchVersion{1};
static constexpr int patchVersion{2};

static std::string version(){
return std::to_string( majorVersion ) + "." +
Expand Down

0 comments on commit 2e68016

Please sign in to comment.