From 169a6f2d08e7ac4f70c344b287d3aeca3b49c22a Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Wed, 27 Apr 2022 11:21:42 +0100 Subject: [PATCH] Value: Update refersToSameSourceAs documentation --- modules/juce_data_structures/values/juce_Value.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/juce_data_structures/values/juce_Value.h b/modules/juce_data_structures/values/juce_Value.h index 90babe87b7..7a75fb6338 100644 --- a/modules/juce_data_structures/values/juce_Value.h +++ b/modules/juce_data_structures/values/juce_Value.h @@ -114,7 +114,8 @@ public: */ void referTo (const Value& valueToReferTo); - /** Returns true if this value and the other one are references to the same value. + /** Returns true if this object and the other one use the same underlying + ValueSource object. */ bool refersToSameSourceAs (const Value& other) const;