diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-01-27 14:30:24 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2020-01-27 14:30:24 +0200 |
commit | 36fa3bc49a739a3bb1212a1b37fd2c817d4ee1dc (patch) | |
tree | b07a2315dfc79aad6440f7f99626477767c8fe68 /libbuild2 | |
parent | 14c7d434df62989fbceef8322f61400844bd5943 (diff) |
Add missing symbol export declarations
Diffstat (limited to 'libbuild2')
-rw-r--r-- | libbuild2/module.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/module.hxx b/libbuild2/module.hxx index 729cc2e..00084c0 100644 --- a/libbuild2/module.hxx +++ b/libbuild2/module.hxx @@ -134,7 +134,7 @@ namespace build2 // the <name>.loaded variable check (use init_module() directly to sidestep // this check). // - bool + LIBBUILD2_SYMEXPORT bool load_module (scope& root, scope& base, const string& name, @@ -145,7 +145,7 @@ namespace build2 // As above but always load and return a reference to the module instance // pointer (so it can be moved). // - unique_ptr<module_base>& + LIBBUILD2_SYMEXPORT unique_ptr<module_base>& load_module (scope& root, scope& base, const string& name, |