Skip to content

Commit 2e68016

Browse files
authored
Merge pull request #87 from njoy/bugfix/MATXSR
Bugfix/matxsr
2 parents 6512f1e + 5d1697a commit 2e68016

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

dependencies/ENDFtk

Submodule ENDFtk updated 371 files

src/njoy21.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
#define NJOY21
33

44
#include <variant>
5+
#include <map>
56

67

7-
#ifdef USING_CPP17
8+
#if __cplusplus >= 201703L
89
#include <optional>
910
#else
1011
#include <experimental/optional>

src/njoy21/Version.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class Version{
44
// Change whenever new capability is implemented
55
static constexpr int minorVersion{0};
66
// Change whenever merge to master branch is done
7-
static constexpr int patchVersion{1};
7+
static constexpr int patchVersion{2};
88

99
static std::string version(){
1010
return std::to_string( majorVersion ) + "." +

0 commit comments

Comments
 (0)