Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Corryvreckan
Corryvreckan
Commits
05f0b6a0
Commit
05f0b6a0
authored
Jul 04, 2018
by
Simon Spannagel
Browse files
Clipboard: use unordered_map
parent
7490b139
Pipeline
#435504
passed with stages
in 3 minutes and 1 second
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/core/clipboard/Clipboard.hpp
View file @
05f0b6a0
...
...
@@ -11,8 +11,8 @@
#define CORRYVRECKAN_CLIPBOARD_H
#include
<iostream>
#include
<map>
#include
<string>
#include
<unordered_map>
#include
"core/utils/log.h"
#include
"objects/Object.hpp"
...
...
@@ -105,7 +105,7 @@ namespace corryvreckan {
std
::
vector
<
std
::
string
>
m_dataID
;
// Persistent clipboard storage
std
::
map
<
std
::
string
,
double
>
m_persistent_data
;
std
::
unordered_
map
<
std
::
string
,
double
>
m_persistent_data
;
};
}
// namespace corryvreckan
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment