Skip to content

Commit 18b2a95

Browse files
committed
Don't automatically license files that import flc
1 parent bd8401a commit 18b2a95

File tree

6 files changed

+5
-3
lines changed

6 files changed

+5
-3
lines changed

src/flc_algorithm.i

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
%module "flc_algorithm"
99
%include "import_flc.i"
10+
%flc_add_header
1011

1112
%{
1213
#include <algorithm>

src/flc_chrono.i

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
%module "flc_chrono"
99
%include "import_flc.i"
10+
%flc_add_header
1011

1112
%{
1213
#include <chrono>

src/flc_random.i

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
%module "flc_random"
99
%include "import_flc.i"
10+
%flc_add_header
1011

1112
/******************************
1213
* Generator definition

src/flc_string.i

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
%module "flc_string"
99
%include "import_flc.i"
10+
%flc_add_header
1011

1112
// SWIG always represents std::string as native strings. We load its typemaps
1213
// but will explicitly create the class.

src/flc_vector.i

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
%module "flc_vector"
99
%include "import_flc.i"
10+
%flc_add_header
1011

1112
%include <std_vector.i>
1213

src/import_flc.i

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,3 @@
1414

1515
// Support external exceptions
1616
%include <extern_exception.i>
17-
18-
// Instantiate header
19-
%flc_add_header

0 commit comments

Comments
 (0)