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
hyteg
hyteg
Commits
2e83a2a1
Commit
2e83a2a1
authored
Oct 14, 2021
by
Marcel Koch
Browse files
undo using unordered map for primitive storage
parent
3a8cf4ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/hyteg/primitivestorage/PrimitiveStorage.hpp
View file @
2e83a2a1
...
...
@@ -111,7 +111,7 @@ class PrimitiveStorage : private walberla::NonCopyable
{
public:
template
<
typename
P
>
using
GenericPrimitiveMap
=
std
::
unordered_
map
<
PrimitiveID
::
IDType
,
std
::
shared_ptr
<
P
>
>
;
using
GenericPrimitiveMap
=
std
::
map
<
PrimitiveID
::
IDType
,
std
::
shared_ptr
<
P
>
>
;
typedef
GenericPrimitiveMap
<
Primitive
>
PrimitiveMap
;
typedef
GenericPrimitiveMap
<
Vertex
>
VertexMap
;
typedef
GenericPrimitiveMap
<
Edge
>
EdgeMap
;
...
...
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