VIEW: replace boost with std
This commit is contained in:
parent
43d93682a2
commit
df50a10510
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include <vector>
|
||||
#include <set>
|
||||
#include <boost/unordered/unordered_map.hpp>
|
||||
#include <unordered_map>
|
||||
|
||||
#include <math/box2.h>
|
||||
#include <gal/definitions.h>
|
||||
|
@ -575,7 +575,7 @@ private:
|
|||
};
|
||||
|
||||
// Convenience typedefs
|
||||
typedef boost::unordered_map<int, VIEW_LAYER> LAYER_MAP;
|
||||
typedef std::unordered_map<int, VIEW_LAYER> LAYER_MAP;
|
||||
typedef LAYER_MAP::iterator LAYER_MAP_ITER;
|
||||
typedef std::vector<VIEW_LAYER*> LAYER_ORDER;
|
||||
typedef std::vector<VIEW_LAYER*>::iterator LAYER_ORDER_ITER;
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
* - select scope (global/project)
|
||||
*/
|
||||
|
||||
#include <memory>
|
||||
#include <wx/wx.h>
|
||||
#include <wx/uri.h>
|
||||
#include <wx/dir.h>
|
||||
|
|
Loading…
Reference in New Issue