diff options
Diffstat (limited to 'compiler/cgen.nim')
-rw-r--r-- | compiler/cgen.nim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/cgen.nim b/compiler/cgen.nim index c645b81aa..f3fa6a63e 100644 --- a/compiler/cgen.nim +++ b/compiler/cgen.nim @@ -1,7 +1,7 @@ # # # The Nim Compiler -# (c) Copyright 2014 Andreas Rumpf +# (c) Copyright 2015 Andreas Rumpf # # See the file "copying.txt", included in this # distribution, for details about the copyright. @@ -924,18 +924,18 @@ proc addIntTypes(result: var PRope) {.inline.} = proc getCopyright(cfile: string): PRope = if optCompileOnly in gGlobalOptions: result = ropeff("/* Generated by Nim Compiler v$1 */$N" & - "/* (c) 2014 Andreas Rumpf */$N" & + "/* (c) 2015 Andreas Rumpf */$N" & "/* The generated code is subject to the original license. */$N", "; Generated by Nim Compiler v$1$N" & "; (c) 2012 Andreas Rumpf$N", [toRope(VersionAsString)]) else: result = ropeff("/* Generated by Nim Compiler v$1 */$N" & - "/* (c) 2014 Andreas Rumpf */$N" & + "/* (c) 2015 Andreas Rumpf */$N" & "/* The generated code is subject to the original license. */$N" & "/* Compiled for: $2, $3, $4 */$N" & "/* Command for C compiler:$n $5 */$N", "; Generated by Nim Compiler v$1$N" & - "; (c) 2014 Andreas Rumpf$N" & + "; (c) 2015 Andreas Rumpf$N" & "; Compiled for: $2, $3, $4$N" & "; Command for LLVM compiler:$N $5$N", [toRope(VersionAsString), toRope(platform.OS[targetOS].name), |