Skip to content

Commit 566396e

Browse files
committedOct 10, 2024·
format
1 parent d3d048d commit 566396e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/tst/iterator.hxx

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace tst {
3333

3434
class iterator
3535
{
36-
const decltype(application::suites)& suites;
36+
const decltype(application::suites) & suites;
3737

3838
decltype(application::suites)::const_iterator si;
3939
decltype(suite::tests)::const_iterator pi;
@@ -49,7 +49,7 @@ class iterator
4949
}
5050

5151
public:
52-
iterator(decltype(suites)& suites) :
52+
iterator(decltype(suites) & suites) :
5353
suites(suites),
5454
si(suites.begin())
5555
{

0 commit comments

Comments
 (0)
Please sign in to comment.