Skip to content

Commit

Permalink
Merge pull request #68 from lsst/tickets/DM-15151
Browse files Browse the repository at this point in the history
DM-15151: Set symbol visibility to hidden in pybind11 wrappers
  • Loading branch information
r-owen committed Sep 12, 2018
2 parents ce733cf + 26cb3c7 commit e9c3a01
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/Mixture.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,24 @@
#include "lsst/afw/table/io/OutputArchive.h"
#include "lsst/afw/table/io/InputArchive.h"
#include "lsst/afw/table/io/CatalogVector.h"
#include "lsst/afw/table/io/Persistable.cc"
#include "lsst/meas/modelfit/Mixture.h"

namespace tbl = lsst::afw::table;

namespace lsst { namespace meas { namespace modelfit {
namespace lsst {
namespace afw {
namespace table {
namespace io {

template std::shared_ptr<meas::modelfit::Mixture> PersistableFacade<meas::modelfit::Mixture>::dynamicCast(
std::shared_ptr<Persistable> const&);

} // namespace io
} // namespace table
} // namespace afw
namespace meas {
namespace modelfit {

void MixtureComponent::setSigma(Matrix const & sigma) {
_sigmaLLT.compute(sigma);
Expand Down

0 comments on commit e9c3a01

Please sign in to comment.