mirror of
https://gitee.com/fasiondog/hikyuu.git
synced 2024-11-30 02:48:57 +08:00
fixed MultiFactorBase 构造时确实名称
This commit is contained in:
parent
238d4a715c
commit
14d4ce9190
@ -59,11 +59,11 @@ HKU_API std::ostream& operator<<(std::ostream& out, const MultiFactorPtr& mf) {
|
||||
return out;
|
||||
}
|
||||
|
||||
MultiFactorBase::MultiFactorBase() {
|
||||
MultiFactorBase::MultiFactorBase() : m_name("MultiFactorBase") {
|
||||
initParam();
|
||||
}
|
||||
|
||||
MultiFactorBase::MultiFactorBase(const string& name) {
|
||||
MultiFactorBase::MultiFactorBase(const string& name) : m_name(name) {
|
||||
initParam();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user