Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
KDevelop
KDevelop
Commits
d7551c2e
Commit
d7551c2e
authored
Oct 11, 2022
by
Igor Kushnir
Browse files
Make ParamIterator::operator*() const
parent
f08d0452
Changes
2
Hide whitespace changes
Inline
Side-by-side
kdevplatform/language/duchain/stringhelpers.cpp
View file @
d7551c2e
...
...
@@ -370,9 +370,9 @@ ParamIterator& ParamIterator::operator ++()
return
*
this
;
}
QString
ParamIterator
::
operator
*
()
QString
ParamIterator
::
operator
*
()
const
{
Q_D
(
ParamIterator
);
Q_D
(
const
ParamIterator
);
Q_ASSERT
(
*
this
);
...
...
kdevplatform/language/duchain/stringhelpers.h
View file @
d7551c2e
...
...
@@ -71,7 +71,7 @@ public:
/**
* Returns current found parameter
*/
QString
operator
*
();
QString
operator
*
()
const
;
/**
* Returns whether there is a current found parameter
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment