Navigation Menu

Skip to content

Commit

Permalink
actually hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
tbenthompson committed Feb 8, 2019
1 parent ac10ff7 commit 599eaae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cppimport/templating.py
Expand Up @@ -22,7 +22,7 @@ def setup_pybind11(cfg):
import pybind11
cfg['include_dirs'] += [pybind11.get_include(), pybind11.get_include(True)]
# Prefix with c++11 arg instead of suffix so that if a user specifies c++14 (or later!) then it won't be overridden.
cfg['compiler_args'] = ['-std=c++11', '-fvisibility=default'] + cfg['compiler_args']
cfg['compiler_args'] = ['-std=c++11', '-fvisibility=hidden'] + cfg['compiler_args']

def run_templating(module_data):
import mako.template
Expand Down

0 comments on commit 599eaae

Please sign in to comment.