Skip to content

Commit

Permalink
Fix CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
knocte committed Sep 5, 2024
1 parent 58cb8c5 commit 04b467e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fsxc/Fsxc.fs
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,10 @@ module Program =
let lineKind, newState =
match readPreprocessorLine line with
| Some(PreProcessorElement.Action action) ->
LineKind.PreProcessorAction action, currentReadState
if currentReadState <> IgnoreLinesUntilNextPreProcessorConditional then
LineKind.PreProcessorAction action, currentReadState
else
LineKind.Commented, currentReadState
| Some(PreProcessorElement.Conditional cond) ->
match cond, currentReadState with
| PreProcessorConditional.Else,
Expand Down

0 comments on commit 04b467e

Please sign in to comment.