mirror of
https://github.com/tristanpenman/valijson.git
synced 2024-12-12 18:20:27 +01:00
Merge pull request #114 from baylesj/fix-memory-leak
Fix memory leak in concrete constraints
This commit is contained in:
commit
cf64893031
@ -189,16 +189,16 @@ public:
|
|||||||
|
|
||||||
adapters::FrozenValue * getValue() const
|
adapters::FrozenValue * getValue() const
|
||||||
{
|
{
|
||||||
return m_value;
|
return m_value.get();
|
||||||
}
|
}
|
||||||
|
|
||||||
void setValue(const adapters::Adapter &value)
|
void setValue(const adapters::Adapter &value)
|
||||||
{
|
{
|
||||||
m_value = value.freeze();
|
m_value = std::unique_ptr<adapters::FrozenValue>(value.freeze());
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
adapters::FrozenValue *m_value;
|
std::unique_ptr<adapters::FrozenValue> m_value;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user