Skip to content

Commit d0a30af

Browse files
committed
EBN #17: Check for an acceptable license [license].
1 parent fc44dcd commit d0a30af

21 files changed

+521
-60
lines changed

COPYING.LIB

+481
Large diffs are not rendered by default.

lib/cppparser/ast.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>
1817
*/
1918

2019
#include "ast.h"

lib/cppparser/ast.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
#ifndef __ast_h

lib/cppparser/driver.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
Library General Public License for more details.
1414
1515
You should have received a copy of the GNU Library General Public License
16-
along with this library; see the file COPYING.LIB. If not, write to
17-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18-
Boston, MA 02111-1307, USA.
16+
along with this library; see the file COPYING.LIB. If not, see
17+
<http://www.gnu.org/licenses/>.
1918
*/
2019

2120
#define CACHELEXER

lib/cppparser/driver.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
#ifndef DRIVER_H

lib/cppparser/errors.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
#include "errors.h"

lib/cppparser/errors.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
#ifndef ERRORS_H

lib/cppparser/lexer.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
#include "lexer.h"

lib/cppparser/lexer.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
#ifndef LEXER_H

lib/cppparser/lookup.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
Library General Public License for more details.
1414
1515
You should have received a copy of the GNU Library General Public License
16-
along with this library; see the file COPYING.LIB. If not, write to
17-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18-
Boston, MA 02111-1307, USA.
16+
along with this library; see the file COPYING.LIB. If not, see
17+
<http://www.gnu.org/licenses/>.
1918
*/
2019

2120
#include "lookup.h"

lib/cppparser/lookup.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
Library General Public License for more details.
1414
1515
You should have received a copy of the GNU Library General Public License
16-
along with this library; see the file COPYING.LIB. If not, write to
17-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18-
Boston, MA 02111-1307, USA.
16+
along with this library; see the file COPYING.LIB. If not, see
17+
<http://www.gnu.org/licenses/>.
1918
*/
2019

2120
#ifndef _LOOKUP_H_

lib/cppparser/parser.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
// c++ support

lib/cppparser/parser.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
#ifndef PARSER_H

lib/cppparser/tree_parser.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
#include "tree_parser.h"

lib/cppparser/tree_parser.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
#ifndef __tree_parser_h

lib/interfaces/codemodel.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
#include "codemodel.h"

lib/interfaces/codemodel.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
Library General Public License for more details.
1515
1616
You should have received a copy of the GNU Library General Public License
17-
along with this library; see the file COPYING.LIB. If not, write to
18-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19-
Boston, MA 02111-1307, USA.
17+
along with this library; see the file COPYING.LIB. If not, see
18+
<http://www.gnu.org/licenses/>.
2019
*/
2120
#ifndef CODEMODEL_H
2221
#define CODEMODEL_H

lib/interfaces/codemodel_treeparser.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
Library General Public License for more details.
1313
1414
You should have received a copy of the GNU Library General Public License
15-
along with this library; see the file COPYING.LIB. If not, write to
16-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17-
Boston, MA 02111-1307, USA.
15+
along with this library; see the file COPYING.LIB. If not, see
16+
<http://www.gnu.org/licenses/>.
1817
*/
1918

2019
#include "codemodel_treeparser.h"

lib/interfaces/codemodel_treeparser.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
Library General Public License for more details.
1414
1515
You should have received a copy of the GNU Library General Public License
16-
along with this library; see the file COPYING.LIB. If not, write to
17-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18-
Boston, MA 02111-1307, USA.
16+
along with this library; see the file COPYING.LIB. If not, see
17+
<http://www.gnu.org/licenses/>.
1918
*/
2019
#ifndef CODEMODEL_TREEPARSER_H
2120
#define CODEMODEL_TREEPARSER_H

lib/interfaces/codemodel_utils.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
Library General Public License for more details.
1515
1616
You should have received a copy of the GNU Library General Public License
17-
along with this library; see the file COPYING.LIB. If not, write to
18-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19-
Boston, MA 02111-1307, USA.
17+
along with this library; see the file COPYING.LIB. If not, see
18+
<http://www.gnu.org/licenses/>.
2019
*/
2120

2221
#include "codemodel_utils.h"

lib/interfaces/codemodel_utils.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414
Library General Public License for more details.
1515
1616
You should have received a copy of the GNU Library General Public License
17-
along with this library; see the file COPYING.LIB. If not, write to
18-
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19-
Boston, MA 02111-1307, USA.
17+
along with this library; see the file COPYING.LIB. If not, see
18+
<http://www.gnu.org/licenses/>.
2019
*/
2120
#ifndef CODEMODEL_UTILS_H
2221
#define CODEMODEL_UTILS_H

0 commit comments

Comments
 (0)