Skip to content

Commit

Permalink
Merge pull request #816 from leapmotion/fix-macbuild
Browse files Browse the repository at this point in the history
Correct Mac build error
  • Loading branch information
Veronica Zheng committed Oct 30, 2015
2 parents 68c85ab + 1552756 commit 8144c21
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion autowiring/atomic_list.h
Expand Up @@ -75,7 +75,9 @@ namespace autowiring {
{}
~chain(void) {
// Deletion convenience:
for(auto& x : *this) {}
for(auto& x : *this) {
(void)x;
}
}

struct end_iterator;
Expand Down

0 comments on commit 8144c21

Please sign in to comment.