Skip to content
GitLab
Explore
Sign in
Register
This is an archived project. Repository and other project resources are read-only.
Changes
Page history
update wording/content for HashTable
authored
Dec 21, 2019
by
Mark OLESEN
Hide whitespace changes
Inline
Side-by-side
coding/patterns/memory.md
View page @
a6426dbf
...
@@ -28,7 +28,7 @@ return tresult;
...
@@ -28,7 +28,7 @@ return tresult;
```
```
-
Since the type is already dictated by the template parameter for the
-
Since the type is already dictated by the template parameter for the
`New()
'
method, an `
auto
` declaration works without issue. When
`New()
`
method, an
`auto`
declaration works without issue. When
dereferencing, the choice of variable names (
`result`
vs
`tresult`
)
dereferencing, the choice of variable names (
`result`
vs
`tresult`
)
makes the use clear, and makes the code nicely align.
makes the use clear, and makes the code nicely align.
...
...