VIEW: replace boost with std

This commit is contained in:
Tomasz Wlostowski 2016-08-15 17:16:45 +02:00 committed by Maciej Suminski
parent 43d93682a2
commit df50a10510
2 changed files with 3 additions and 2 deletions

View File

@ -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;

View File

@ -32,6 +32,7 @@
* - select scope (global/project)
*/
#include <memory>
#include <wx/wx.h>
#include <wx/uri.h>
#include <wx/dir.h>