34
34
Record & IteratorBase::get_record () const
35
35
{
36
36
throw std::exception ();
37
- // NOLINTBEGIN( cppcheck-suppress[ unreachableCode])
37
+ // cppcheck-suppress-begin unreachableCode
38
38
static Record record;
39
39
return record;
40
- // NOLINTEND( cppcheck-suppress[ unreachableCode])
40
+ // cppcheck-suppress-end unreachableCode
41
41
}
42
42
43
43
void IteratorBase::next ()
@@ -48,18 +48,18 @@ void IteratorBase::next()
48
48
bool IteratorBase::has_next () const
49
49
{
50
50
throw std::exception ();
51
- // NOLINTBEGIN( cppcheck-suppress[ unreachableCode])
51
+ // cppcheck-suppress-begin unreachableCode
52
52
return false ;
53
- // NOLINTEND( cppcheck-suppress[ unreachableCode])
53
+ // cppcheck-suppress-end unreachableCode
54
54
}
55
55
56
56
const Record & ConstIteratorBase::get_record () const
57
57
{
58
58
throw std::exception ();
59
- // NOLINTBEGIN( cppcheck-suppress[ unreachableCode])
59
+ // cppcheck-suppress-begin unreachableCode
60
60
static Record record;
61
61
return record;
62
- // NOLINTEND( cppcheck-suppress[ unreachableCode])
62
+ // cppcheck-suppress-end unreachableCode
63
63
}
64
64
65
65
void ConstIteratorBase::next ()
@@ -70,7 +70,7 @@ void ConstIteratorBase::next()
70
70
bool ConstIteratorBase::has_next () const
71
71
{
72
72
throw std::exception ();
73
- // NOLINTBEGIN( cppcheck-suppress[ unreachableCode])
73
+ // cppcheck-suppress-begin unreachableCode
74
74
return false ;
75
- // NOLINTEND( cppcheck-suppress[ unreachableCode])
75
+ // cppcheck-suppress-end unreachableCode
76
76
}
0 commit comments