remove rvalue argument so we can wrap method
parent
a7b38e9ba0
commit
a35e5a6b08
|
@ -49,8 +49,8 @@ class GTSAM_EXPORT HybridSmoother {
|
||||||
/**
|
/**
|
||||||
* Re-initialize the smoother from a new hybrid Bayes Net.
|
* Re-initialize the smoother from a new hybrid Bayes Net.
|
||||||
*/
|
*/
|
||||||
void reInitialize(HybridBayesNet&& hybridBayesNet) {
|
void reInitialize(HybridBayesNet& hybridBayesNet) {
|
||||||
hybridBayesNet_ = std::move(hybridBayesNet);
|
hybridBayesNet_ = hybridBayesNet;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue