Skip to content

Commit

Permalink
Fixing some include files
Browse files Browse the repository at this point in the history
  • Loading branch information
whaeck committed Jan 19, 2023
1 parent cdc3315 commit 7ec38a0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ dependencies
# python
__pycache__
*.pyc
.ipynb*
2 changes: 2 additions & 0 deletions src/ENDFtk.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include "ENDFtk/section/26.hpp"
#include "ENDFtk/section/27.hpp"
#include "ENDFtk/section/28.hpp"
#include "ENDFtk/section/32.hpp"
#include "ENDFtk/section/33.hpp"
#include "ENDFtk/section/34.hpp"

Expand All @@ -51,6 +52,7 @@
#include "ENDFtk/file/26.hpp"
#include "ENDFtk/file/27.hpp"
#include "ENDFtk/file/28.hpp"
#include "ENDFtk/file/32.hpp"
#include "ENDFtk/file/33.hpp"
#include "ENDFtk/file/34.hpp"

Expand Down
6 changes: 3 additions & 3 deletions src/ENDFtk/file/32.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ namespace file {
friend Base< Type >;
using Parent = Base< Type >;

// MF7 only has enumerated secton
// MF32 only has enumerated secton
// no sections are required
static constexpr auto requiredSections()
RANGES_DECLTYPE_AUTO_RETURN( hana::make_tuple( 151_c ) )

// MT2 and MT4 are optional
// no optional sections
static constexpr auto optionalSections()
RANGES_DECLTYPE_AUTO_RETURN( hana::make_tuple() )

// the following sections are currently unimplemented
// no sections are currently unimplemented
static constexpr auto unimplementedSections()
RANGES_DECLTYPE_AUTO_RETURN( hana::make_tuple() )

Expand Down

0 comments on commit 7ec38a0

Please sign in to comment.