changeset 249:32d354584b28

- Upgraded license notices to GPL3.
author aziz
date Wed, 01 Aug 2007 15:14:05 +0000
parents 63a15b082c0c
children 1b9494591ad6
files trunk/src/Declarations.d trunk/src/Expressions.d trunk/src/Information.d trunk/src/Keywords.d trunk/src/Lexer.d trunk/src/Messages.d trunk/src/Parser.d trunk/src/Statements.d trunk/src/SyntaxTree.d trunk/src/Token.d trunk/src/Types.d trunk/src/main.d
diffstat 12 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/trunk/src/Declarations.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/Declarations.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module Declarations;
 import SyntaxTree;
--- a/trunk/src/Expressions.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/Expressions.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module Expressions;
 import SyntaxTree;
--- a/trunk/src/Information.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/Information.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module Information;
 import Messages;
--- a/trunk/src/Keywords.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/Keywords.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module Keywords;
 import Token;
--- a/trunk/src/Lexer.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/Lexer.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module Lexer;
 import Token;
--- a/trunk/src/Messages.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/Messages.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module Messages;
 
--- a/trunk/src/Parser.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/Parser.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module Parser;
 import Lexer;
--- a/trunk/src/Statements.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/Statements.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module Statements;
 import SyntaxTree;
--- a/trunk/src/SyntaxTree.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/SyntaxTree.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module SyntaxTree;
 import Token;
--- a/trunk/src/Token.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/Token.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module Token;
 import std.c.stdlib : malloc, free;
--- a/trunk/src/Types.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/Types.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module Types;
 import SyntaxTree;
--- a/trunk/src/main.d	Wed Aug 01 14:57:05 2007 +0000
+++ b/trunk/src/main.d	Wed Aug 01 15:14:05 2007 +0000
@@ -1,6 +1,6 @@
 /++
   Author: Aziz Köksal
-  License: GPL2
+  License: GPL3
 +/
 module dparser;
 import Parser;