summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvisvgm/dvisvgm-src/src/FontMap.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/dvisvgm/dvisvgm-src/src/FontMap.hpp')
-rw-r--r--Build/source/texk/dvisvgm/dvisvgm-src/src/FontMap.hpp15
1 files changed, 6 insertions, 9 deletions
diff --git a/Build/source/texk/dvisvgm/dvisvgm-src/src/FontMap.hpp b/Build/source/texk/dvisvgm/dvisvgm-src/src/FontMap.hpp
index 103bb6aa89a..09344b68fc3 100644
--- a/Build/source/texk/dvisvgm/dvisvgm-src/src/FontMap.hpp
+++ b/Build/source/texk/dvisvgm/dvisvgm-src/src/FontMap.hpp
@@ -2,7 +2,7 @@
** FontMap.hpp **
** **
** This file is part of dvisvgm -- a fast DVI to SVG converter **
-** Copyright (C) 2005-2017 Martin Gieseking <martin.gieseking@uos.de> **
+** Copyright (C) 2005-2018 Martin Gieseking <martin.gieseking@uos.de> **
** **
** This program is free software; you can redistribute it and/or **
** modify it under the terms of the GNU General Public License as **
@@ -21,23 +21,20 @@
#ifndef FONTMAP_HPP
#define FONTMAP_HPP
-#include <map>
#include <memory>
#include <ostream>
#include <string>
+#include <unordered_map>
#include "FontStyle.hpp"
-
struct FontEncoding;
class MapLine;
class Subfont;
-class FontMap
-{
+class FontMap {
public:
- struct Entry
- {
- Entry (const MapLine &mapline, Subfont *subfont=0);
+ struct Entry {
+ Entry (const MapLine &mapline, Subfont *subfont=nullptr);
Entry (const Entry &entry) =delete;
Entry (Entry &&entry) =default;
Entry& operator = (Entry &&entry) =default;
@@ -71,7 +68,7 @@ class FontMap
FontMap () =default;
private:
- std::map<std::string,std::unique_ptr<Entry>> _entries;
+ std::unordered_map<std::string,std::unique_ptr<Entry>> _entries;
};
#endif