Depsgraph: Expose set type available

Is way easier to use than a GSet and less proone for errors.

If we really want GSet to always be used, should make some C++
wrapper.
This commit is contained in:
Sergey Sharybin 2019-04-29 12:37:21 +02:00
parent 4d889897ba
commit 587ee46d88
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,7 @@
#include <vector>
#include <algorithm>
#include <map>
#include <set>
#include <unordered_map>
struct Depsgraph;
@ -48,6 +49,7 @@ namespace DEG {
/* Commonly used types. */
using std::map;
using std::pair;
using std::set;
using std::string;
using std::unordered_map;
using std::vector;