diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-08-19 04:02:39 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-08-19 04:02:39 (GMT) |
commit | d656f556b85fb25903d5f18c6a9557d6ed0e6f7d (patch) | |
tree | dc28c5a2ee8fbad8fd1480a2f67a0e9fe5298f14 /src/dxfdim.h | |
parent | aa2c67d24925a8b9465d5a908662091b705cf7cc (diff) |
debugging failed test: throwntogethertest polygons
Diffstat (limited to 'src/dxfdim.h')
-rw-r--r-- | src/dxfdim.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/dxfdim.h b/src/dxfdim.h index bd42109..5dc0ae0 100644 --- a/src/dxfdim.h +++ b/src/dxfdim.h @@ -1,10 +1,13 @@ #ifndef DXFDIM_H_ #define DXFDIM_H_ -#include <boost/unordered_map.hpp> +//#include <boost/unordered_map.hpp> +#include <map> #include "value.h" -extern boost::unordered_map<std::string,Value> dxf_dim_cache; -extern boost::unordered_map<std::string,Value> dxf_cross_cache; +//extern boost::unordered_map<std::string,Value> dxf_dim_cache; +//extern boost::unordered_map<std::string,Value> dxf_cross_cache; +extern std::map<std::string,Value> dxf_dim_cache; +extern std::map<std::string,Value> dxf_cross_cache; #endif |