-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #471 from Goddard-Fortran-Ecosystem/update-submodules
Fixes #463
- Loading branch information
Showing
16 changed files
with
73 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule fArgParse
updated
12 files
+22 −0 | .github/workflows/changelog-enforcer.yml | |
+122 −39 | .github/workflows/main.yml | |
+1 −2 | CMakeLists.txt | |
+4 −4 | COPYRIGHT | |
+23 −1 | ChangeLog.md | |
+11 −0 | LICENSE | |
+ − | LICENSE-NOSA.pdf | |
+14 −0 | cmake/Fujitsu.cmake | |
+1 −1 | cmake/NAG.cmake | |
+1 −1 | extern/gFTL-shared | |
+0 −0 | tools/ci-install-cmake.sh | |
+1 −1 | tools/ci-install-gfe.bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
module PF_ExceptionVector | ||
use PF_Exception | ||
|
||
#define _type class(Exception) | ||
#define _allocatable | ||
#define _vector ExceptionVector | ||
#define _iterator ExceptionVectorIterator | ||
#include "templates/vector.inc" | ||
#define T Exception | ||
#define T_polymorphic | ||
#define Vector ExceptionVector | ||
#define VectorIterator ExceptionVectorIterator | ||
#include "vector/template.inc" | ||
|
||
end module PF_ExceptionVector |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
module PF_TestFailureVector | ||
use PF_TestFailure | ||
#define _type type (TestFailure) | ||
#define _vector TestFailureVector | ||
#define _iterator TestFailureVectorIterator | ||
#include "templates/vector.inc" | ||
!#define _type type (TestFailure) | ||
!#define _vector TestFailureVector | ||
!#define _iterator TestFailureVectorIterator | ||
!#include "templates/vector.inc" | ||
|
||
#define T TestFailure | ||
#define Vector TestFailureVector | ||
#define VectorIterator TestFailureVectorIterator | ||
#include "vector/template.inc" | ||
|
||
end module PF_TestFailureVector |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
module PF_TestListenerVector | ||
use PF_TestListener | ||
#define _type class (TestListener) | ||
#define _allocatable | ||
#define _vector TestListenerVector | ||
#define _iterator TestListenerVectorIterator | ||
#include "templates/vector.inc" | ||
#define T TestListener | ||
#define T_polymorphic | ||
#define Vector TestListenerVector | ||
#define VectorIterator TestListenerVectorIterator | ||
#include "vector/template.inc" | ||
|
||
end module PF_TestListenerVector |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
module PF_TestVector | ||
use PF_Test | ||
#define _type class (Test) | ||
#define _allocatable | ||
#define _vector TestVector | ||
#define _iterator TestVectorIterator | ||
#include "templates/vector.inc" | ||
#define T Test | ||
#define T_polymorphic | ||
#define Vector TestVector | ||
#define VectorIterator TestVectorIterator | ||
#include "vector/template.inc" | ||
|
||
end module PF_TestVector |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
module pf_MatcherVector | ||
use pf_AbstractMatcher | ||
|
||
#define _type class(AbstractMatcher) | ||
#define _vector MatcherVector | ||
#define _vectorIterator MatcherVectorIterator | ||
#define _allocatable | ||
#define T AbstractMatcher | ||
#define T_polymorphic | ||
#define Vector MatcherVector | ||
#define VectorIterator MatcherVectorIterator | ||
|
||
#include "vector/template.inc" | ||
|
||
#undef VectorIterator | ||
#undef Vector | ||
#undef T_polymorphic | ||
#undef T | ||
|
||
#include "templates/vector.inc" | ||
|
||
#undef _allocatable | ||
#undef _vectorIterator | ||
#undef _vector | ||
#undef _type | ||
|
||
end module pf_MatcherVector |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
module pf_SelfDescribingVector | ||
use pf_SelfDescribing | ||
|
||
#define _type class(SelfDescribing) | ||
#define _vector SelfDescribingVector | ||
#define _vectorIterator SelfDescribingVectorIterator | ||
#define _allocatable | ||
#define T SelfDescribing | ||
#define T_polymorphic | ||
#define Vector SelfDescribingVector | ||
#define VectorIterator SelfDescribingVectorIterator | ||
|
||
#include "templates/vector.inc" | ||
#include "vector/template.inc" | ||
|
||
#undef VectorIterator | ||
#undef Vector | ||
#undef T_polymorphic | ||
#undef T | ||
|
||
#undef _allocatable | ||
#undef _vectorIterator | ||
#undef _vector | ||
#undef _type | ||
|
||
end module pf_SelfDescribingVector |