summaryrefslogtreecommitdiff
path: root/src/id_map.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-12-23 22:51:00 +0000
committerMaxime Coste <frrrwww@gmail.com>2014-12-23 22:51:00 +0000
commitb0fef1a962b0161080f6dae548ffbce33648fe91 (patch)
treeeb5140358fa4fcc78a03886613f4e8daa39784e5 /src/id_map.hh
parentfb611e2f6296e563850d74fea180ade749ab404b (diff)
Rename id_map to IdMap
Diffstat (limited to 'src/id_map.hh')
-rw-r--r--src/id_map.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/id_map.hh b/src/id_map.hh
index 38624a80..591ec629 100644
--- a/src/id_map.hh
+++ b/src/id_map.hh
@@ -10,7 +10,7 @@ namespace Kakoune
{
template<typename Value>
-class id_map
+class IdMap
{
public:
using value_type = std::pair<String, Value>;
@@ -18,8 +18,8 @@ public:
using iterator = typename container_type::iterator;
using const_iterator = typename container_type::const_iterator;
- id_map() = default;
- id_map(std::initializer_list<value_type> val) : m_content{val} {}
+ IdMap() = default;
+ IdMap(std::initializer_list<value_type> val) : m_content{val} {}
void append(const value_type& value)
{