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 6298049 commit 372c83bCopy full SHA for 372c83b
src/tst/iterator.hxx
@@ -33,7 +33,7 @@ namespace tst {
33
34
class iterator
35
{
36
- const decltype(application::suites) & suites;
+ const decltype(application::suites)& suites;
37
38
decltype(application::suites)::const_iterator si;
39
decltype(suite::tests)::const_iterator pi;
@@ -49,7 +49,7 @@ class iterator
49
}
50
51
public:
52
- iterator(decltype(suites) & suites) :
+ iterator(decltype(suites)& suites) :
53
suites(suites),
54
si(suites.begin())
55
0 commit comments