Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/opensubdiv/internal/opensubdiv_util.h')
-rw-r--r--intern/opensubdiv/internal/opensubdiv_util.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/intern/opensubdiv/internal/opensubdiv_util.h b/intern/opensubdiv/internal/opensubdiv_util.h
index e7123d9d97b..1e4ed1b0d54 100644
--- a/intern/opensubdiv/internal/opensubdiv_util.h
+++ b/intern/opensubdiv/internal/opensubdiv_util.h
@@ -20,20 +20,27 @@
#ifndef OPENSUBDIV_UTIL_H_
#define OPENSUBDIV_UTIL_H_
+#include <stdint.h>
+
#include <algorithm>
+#include <cassert>
#include <vector>
#include <stack>
#include <string>
+#include <unordered_map>
#include <utility>
namespace opensubdiv_capi {
using std::fill;
+using std::make_pair;
using std::max;
using std::min;
+using std::pair;
using std::stack;
using std::string;
using std::swap;
+using std::unordered_map;
using std::vector;
#define foreach(x, y) for (x : y)