Merge pull request #1042 from paulromano/cpp-nucdata

Move many nuclear data-related classes to C++
This commit is contained in:
Sterling Harper 2018-08-15 14:52:41 -04:00 committed by GitHub
commit 0ff0568a10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
151 changed files with 50272 additions and 2113 deletions

View file

@ -174,9 +174,7 @@ Follow the `C++ Core Guidelines`_ except when they conflict with another
guideline listed here. For convenience, many important guidelines from that
list are repeated here.
Conform to the C++11 standard. Note that this is a significant difference
between our style and the C++ Core Guidelines. Many suggestions in those
Guidelines require C++14.
Conform to the C++14 standard.
Always use C++-style comments (``//``) as opposed to C-style (``/**/``). (It
is more difficult to comment out a large section of code that uses C-style