We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ed3bed commit 7eaefbcCopy full SHA for 7eaefbc
1 file changed
src/ScatterplotPlugin.cpp
@@ -243,7 +243,7 @@ ScatterplotPlugin::ScatterplotPlugin(const PluginFactory* factory) :
243
// Check to set whether the number of data points comprised throughout all clusters is the same number
244
// as the number of data points in the dataset we are trying to color
245
int totalNumIndices = 0;
246
- for (Cluster cluster : candidateDataset->getClusters())
+ for (const Cluster& cluster : candidateDataset->getClusters())
247
{
248
totalNumIndices += cluster.getIndices().size();
249
}
0 commit comments