Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
238b0133
Commit
238b0133
authored
18 years ago
by
Oliver Sander
Browse files
Options
Downloads
Patches
Plain Diff
remove deprecated methods
[[Imported from SVN: r4686]]
parent
1cc16df4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/sllist.hh
+0
-68
0 additions, 68 deletions
common/sllist.hh
with
0 additions
and
68 deletions
common/sllist.hh
+
0
−
68
View file @
238b0133
...
...
@@ -139,34 +139,6 @@ namespace Dune
*/
inline
const_iterator
begin
()
const
;
/**
* @brief Get an iterator pointing before the first
* element in the list.
*
* To be positioned at a valid entry the operator++()
* has to be called once.
* @return An iterator pointing before the first
* element.
* @deprecated There is no use for this function! For insertion
* or deletion of elements use beginModify()
*/
inline
iterator
oneBeforeBegin
()
DUNE_DEPRECATED
;
/**
* @brief Get an iterator pointing before the first
* element in the list.
*
* To be positioned at a valid entry the operator++()
* has to be called once.
* @return An iterator pointing before the first
* element.
* @deprecated There is no use for this function! For insertion
* or deletion of elements use beginModify()
*/
inline
const_iterator
oneBeforeBegin
()
const
DUNE_DEPRECATED
;
/**
* @brief Get an iterator capable of deleting and
* inserting elements.
...
...
@@ -201,22 +173,6 @@ namespace Dune
*/
inline
const_iterator
end
()
const
;
/**
* @brief Get an iterator pointing to the
* last element in the list.
*
* @return An iterator pointing to the last element.
*/
inline
iterator
tail
()
DUNE_DEPRECATED
;
/**
* @brief Get an iterator pointing to the
* last element in the list.
*
* @return An iterator pointing to the last element.
*/
inline
const_iterator
tail
()
const
DUNE_DEPRECATED
;
/**
* @brief Check whether the list is empty.
*
...
...
@@ -797,30 +753,6 @@ namespace Dune
return
const_iterator
(
beforeHead_
.
next_
);
}
template
<
typename
T
,
class
A
>
inline
SLListIterator
<
T
,
A
>
SLList
<
T
,
A
>::
oneBeforeBegin
()
{
return
iterator
(
&
beforeHead_
,
this
);
}
template
<
typename
T
,
class
A
>
inline
SLListConstIterator
<
T
,
A
>
SLList
<
T
,
A
>::
oneBeforeBegin
()
const
{
return
const_iterator
(
&
beforeHead_
);
}
template
<
typename
T
,
class
A
>
inline
SLListIterator
<
T
,
A
>
SLList
<
T
,
A
>::
tail
()
{
return
iterator
(
tail_
,
this
);
}
template
<
typename
T
,
class
A
>
inline
SLListConstIterator
<
T
,
A
>
SLList
<
T
,
A
>::
tail
()
const
{
return
const_iterator
(
tail_
);
}
template
<
typename
T
,
class
A
>
inline
SLListIterator
<
T
,
A
>
SLList
<
T
,
A
>::
end
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment