Skip to content

Commit

Permalink
Fixed bug when using newer versions of GCC (NeuralEnsemble#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz-Alexander-Kern committed Jul 27, 2022
1 parent 6f1a4c3 commit f4883d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elephant/spade_src/include/FPGrowth.h
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ class FPGrowth
// TODO: Try to fully remove RefPairs
std::vector<RefPair> fF;

for (const RefPair& p : F)
for (const RefPair p : F)
{
#ifdef DEBUG
LOG_DEBUG << (char)p.first << ":" << p.second->support << std::endl;
Expand Down

0 comments on commit f4883d3

Please sign in to comment.