Skip to content

Commit 04604a2

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f6bc314 commit 04604a2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/test_source/pp/preproc_elif.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
subroutine preprocessor_elif(var, var3, var4, var5, var6)
22

3-
! This file, as used in test_preproc, checks that
3+
! This file, as used in test_preproc, checks that
44
! 1. the steps after the preprocessor parsing has fully finished, are only
55
! using content from the parts within the preprocessor if-elif-else that
66
! should be used. To do this, it has some regular fortran code within the

test/test_source/pp/preproc_if_elif_else.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ subroutine preprocessor_if_elif_else()
44
! tests that when there is an if-elif-elif-else, only the first branch that
55
! evaluates to true is used, and the others ignored. Also when multiple
66
! conditions evaluate to true.
7-
7+
88
#if 0
99
#define PART1 0
1010
#elif 0

test/test_source/pp/preproc_if_elif_skip.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ subroutine preprocessor_if_elif_skip()
44
! tests that when there is an if-elif-elif-else, only the first branch that
55
! evaluates to true is used, and the others ignored. Also when multiple
66
! conditions evaluate to true.
7-
7+
88
#if 1
99
#define PART1 1
1010
#elif 0

0 commit comments

Comments
 (0)