Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Kirill Terekhov
INMOST
Commits
be2a17be
Commit
be2a17be
authored
Oct 21, 2017
by
paveltomin
Committed by
GitHub
Oct 21, 2017
Browse files
const version of dereferencing function
otherwise adgprs does not compile with inmost under vs2017
parent
e9172b26
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/Headers/container.hpp
View file @
be2a17be
...
...
@@ -555,6 +555,7 @@ namespace INMOST
_iterator
operator
--
(
int
){
return
_iterator
(
e
--
);
}
ptrdiff_t
operator
-
(
const
_iterator
&
other
)
const
{
return
e
-
other
.
e
;}
dtype
&
operator
*
()
{
return
*
e
;
}
const
dtype
&
operator
*
()
const
{
return
*
e
;
}
dtype
*
operator
->
()
{
return
e
;
}
_iterator
&
operator
=
(
_iterator
const
&
other
)
{
e
=
other
.
e
;
return
*
this
;
}
bool
operator
==
(
const
_iterator
&
other
)
{
return
e
==
other
.
e
;}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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