1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-22 01:34:21 +00:00

Minor clean-ups.

This commit is contained in:
jules 2013-03-09 18:05:51 +00:00
parent cf781ecb75
commit 522fd40e46
2 changed files with 5 additions and 5 deletions

View file

@ -162,7 +162,7 @@ public:
private:
var value;
JUCE_DECLARE_NON_COPYABLE (SimpleValueSource)
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SimpleValueSource)
};
@ -172,10 +172,10 @@ Value::Value()
{
}
Value::Value (ValueSource* const value_)
: value (value_)
Value::Value (ValueSource* const v)
: value (v)
{
jassert (value_ != nullptr);
jassert (v != nullptr);
}
Value::Value (const var& initialValue)