Depsgraph: Use string and vector in the DEG namespace only

This commit is contained in:
Sergey Sharybin
2017-03-16 12:31:19 +01:00
parent 6d8875bd61
commit 68e58f1991

View File

@@ -44,9 +44,6 @@
#include <string>
#include <vector>
using std::string;
using std::vector;
struct bAction;
struct ChannelDriver;
struct ModifierData;
@@ -56,6 +53,9 @@ struct FCurve;
namespace DEG {
using std::string;
using std::vector;
/* Evaluation Operation for atomic operation */
// XXX: move this to another header that can be exposed?
typedef function<void(struct EvaluationContext *)> DepsEvalOperationCb;