Skip to content

Commit

Permalink
Merge pull request #103 from perl6/add_more_use_nativecall
Browse files Browse the repository at this point in the history
add missing "use NativeCall" to ::Native modules
  • Loading branch information
jonathanstowe committed Oct 2, 2017
2 parents aad9a96 + aa76d36 commit d2d6e19
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion META6.json
@@ -1,7 +1,7 @@
{
"perl" : "6",
"name" : "DBIish",
"version" : "0.5.12",
"version" : "0.5.13",
"description" : "Database connectivity for Perl 6",
"test-depends" : [ ],
"license" : "BSD-2-Clause",
Expand Down
1 change: 1 addition & 0 deletions lib/DBDish/Pg/Native.pm6
@@ -1,6 +1,7 @@
use v6;

unit module DBDish::Pg::Native;
use NativeCall;
use NativeLibs;
use NativeHelpers::Blob;

Expand Down
1 change: 1 addition & 0 deletions lib/DBDish/SQLite/Native.pm6
@@ -1,6 +1,7 @@
use v6;

use NativeLibs;
use NativeCall;

unit module DBDish::SQLite::Native;

Expand Down
1 change: 1 addition & 0 deletions lib/DBDish/mysql/Native.pm6
@@ -1,6 +1,7 @@
use v6;

unit module DBDish::mysql::Native;
use NativeCall;
use NativeLibs;
use NativeHelpers::Blob;

Expand Down

0 comments on commit d2d6e19

Please sign in to comment.