diff options
author | svenbarth <svenbarth@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2021-01-03 12:11:40 +0000 |
---|---|---|
committer | svenbarth <svenbarth@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2021-01-03 12:11:40 +0000 |
commit | 0a06ab29891f26290fbb1dd029325ad07cee1bcb (patch) | |
tree | c0cff3e5b5fc118038974125d6cc5b93ac597b86 | |
parent | ed8693760b119bf714a5a232aa491eabf6dd2a05 (diff) | |
download | fpc-0a06ab29891f26290fbb1dd029325ad07cee1bcb.tar.gz |
+ add a copyright/license header for the nullable unit
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@48006 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r-- | packages/rtl-objpas/src/inc/nullable.pp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/rtl-objpas/src/inc/nullable.pp b/packages/rtl-objpas/src/inc/nullable.pp index c66e7d914c..1968ab04ce 100644 --- a/packages/rtl-objpas/src/inc/nullable.pp +++ b/packages/rtl-objpas/src/inc/nullable.pp @@ -1,3 +1,17 @@ +{ + This file is part of the Free Pascal run time library. + Copyright (C) 2020 Michael Van Canneyt + member of the Free Pascal development team. + + Nullable generic type. + + See the file COPYING.FPC, included in this distribution, + for details about the copyright. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +} unit nullable; {$mode objfpc} |