We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3cee30 commit 04f9d02Copy full SHA for 04f9d02
1 file changed
source/MaterialXGraphEditor/UiNode.h
@@ -189,7 +189,7 @@ class UiToken
189
std::string getAffectedInputsString()
190
{
191
if (_isAffectedInputsDirty.load())
192
- _buildAffectedInputsStream();
+ buildAffectedInputsStream();
193
return _affectedInputsStream.str();
194
}
195
@@ -205,7 +205,7 @@ class UiToken
205
// Track whether changes were made to inputs in order to re-build stream accordingly
206
std::atomic<bool> _isAffectedInputsDirty{ true };
207
208
- void _buildAffectedInputsStream()
+ void buildAffectedInputsStream()
209
210
if (!_isAffectedInputsDirty.load())
211
return;
0 commit comments