diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-08-19 18:08:32 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-08-19 18:08:32 (GMT) |
commit | c6eeb1a1c5da072e1c0a77d30892e4ee95ed9bde (patch) | |
tree | e5513fae2b6fbef7e974771eeb6deeba6e34f2a6 /src/dxfdata.cc | |
parent | ee26d60a8b274afcdad7538bd8b2e9fb8d53f8bd (diff) | |
parent | c1d5e82b4365bf9d0563e1c5927a99d3def91832 (diff) |
Merge branch 'master' of github.com:openscad/openscad
Diffstat (limited to 'src/dxfdata.cc')
-rw-r--r-- | src/dxfdata.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dxfdata.cc b/src/dxfdata.cc index 4b542d1..4258a4c 100644 --- a/src/dxfdata.cc +++ b/src/dxfdata.cc @@ -39,6 +39,7 @@ #include <boost/algorithm/string.hpp> #include <algorithm> #include <sstream> +#include <map> #include <QDir> #include "value.h" @@ -397,7 +398,7 @@ DxfData::DxfData(double fn, double fs, double fa, // Extract paths from parsed data - typedef boost::unordered_map<int, int> LineMap; + typedef std::map<int, int> LineMap; LineMap enabled_lines; for (size_t i = 0; i < lines.size(); i++) { enabled_lines[i] = i; |