Skip to content

Commit 04f9d02

Browse files
committed
Match private member function naming convention
Signed-off-by: mialana <aliu@amyliu.dev>
1 parent b3cee30 commit 04f9d02

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/MaterialXGraphEditor/UiNode.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ class UiToken
189189
std::string getAffectedInputsString()
190190
{
191191
if (_isAffectedInputsDirty.load())
192-
_buildAffectedInputsStream();
192+
buildAffectedInputsStream();
193193
return _affectedInputsStream.str();
194194
}
195195

@@ -205,7 +205,7 @@ class UiToken
205205
// Track whether changes were made to inputs in order to re-build stream accordingly
206206
std::atomic<bool> _isAffectedInputsDirty{ true };
207207

208-
void _buildAffectedInputsStream()
208+
void buildAffectedInputsStream()
209209
{
210210
if (!_isAffectedInputsDirty.load())
211211
return;

0 commit comments

Comments
 (0)