Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pugs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
code
pugs
Commits
39e06090
Commit
39e06090
authored
4 years ago
by
Stéphane Del Pino
Browse files
Options
Downloads
Patches
Plain Diff
Replace maps by unsorted_maps
parent
722dd68e
No related branches found
No related tags found
1 merge request
!42
Feature/diamond dual mesh manager
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/mesh/MeshDataManager.hpp
+2
-2
2 additions, 2 deletions
src/mesh/MeshDataManager.hpp
src/mesh/SynchronizerManager.hpp
+2
-2
2 additions, 2 deletions
src/mesh/SynchronizerManager.hpp
with
4 additions
and
4 deletions
src/mesh/MeshDataManager.hpp
+
2
−
2
View file @
39e06090
...
@@ -5,8 +5,8 @@
...
@@ -5,8 +5,8 @@
#include
<utils/PugsAssert.hpp>
#include
<utils/PugsAssert.hpp>
#include
<utils/PugsMacros.hpp>
#include
<utils/PugsMacros.hpp>
#include
<map>
#include
<memory>
#include
<memory>
#include
<unordered_map>
class
IMesh
;
class
IMesh
;
...
@@ -22,7 +22,7 @@ class MeshData;
...
@@ -22,7 +22,7 @@ class MeshData;
class
MeshDataManager
class
MeshDataManager
{
{
private:
private:
std
::
map
<
const
IMesh
*
,
std
::
shared_ptr
<
IMeshData
>>
m_mesh_mesh_data_map
;
std
::
unordered_
map
<
const
IMesh
*
,
std
::
shared_ptr
<
IMeshData
>>
m_mesh_mesh_data_map
;
static
MeshDataManager
*
m_instance
;
static
MeshDataManager
*
m_instance
;
...
...
This diff is collapsed.
Click to expand it.
src/mesh/SynchronizerManager.hpp
+
2
−
2
View file @
39e06090
...
@@ -4,8 +4,8 @@
...
@@ -4,8 +4,8 @@
#include
<utils/PugsAssert.hpp>
#include
<utils/PugsAssert.hpp>
#include
<utils/PugsMacros.hpp>
#include
<utils/PugsMacros.hpp>
#include
<map>
#include
<memory>
#include
<memory>
#include
<unordered_map>
class
IConnectivity
;
class
IConnectivity
;
class
Synchronizer
;
class
Synchronizer
;
...
@@ -13,7 +13,7 @@ class Synchronizer;
...
@@ -13,7 +13,7 @@ class Synchronizer;
class
SynchronizerManager
class
SynchronizerManager
{
{
private:
private:
std
::
map
<
const
IConnectivity
*
,
std
::
shared_ptr
<
Synchronizer
>>
m_connectivity_synchronizer_map
;
std
::
unordered_
map
<
const
IConnectivity
*
,
std
::
shared_ptr
<
Synchronizer
>>
m_connectivity_synchronizer_map
;
static
SynchronizerManager
*
m_instance
;
static
SynchronizerManager
*
m_instance
;
...
...
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