From eee68801b9f1d09fd6d94dfd9e69d0780a2407b5 Mon Sep 17 00:00:00 2001 From: Francis Russell Date: Sun, 20 May 2012 20:22:11 +0100 Subject: [PATCH] Add comment to where 'use' statements will go. --- src/ofc/codegen/FortranGenerator.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ofc/codegen/FortranGenerator.scala b/src/ofc/codegen/FortranGenerator.scala index 25b04b3..09dad75 100644 --- a/src/ofc/codegen/FortranGenerator.scala +++ b/src/ofc/codegen/FortranGenerator.scala @@ -145,9 +145,11 @@ class FortranGenerator { def apply(func: Function[_ <: Type]) : String = { in processStatement(func.getBlock) - prependLine("\n") + prependLine("") prependLines(symbolManager.getDeclarations) prependLine("implicit none") + prependLine("") + prependLine("!use statments will go here") out // parameters are only named *after* processing the body -- 2.47.3