Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-15151: Set symbol visibility to hidden in pybind11 wrappers #68

Merged
merged 1 commit into from
Sep 12, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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