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:
authorMai Lavelle <mai.lavelle@gmail.com>2016-08-18 01:49:18 +0300
committerMai Lavelle <mai.lavelle@gmail.com>2016-08-18 01:49:18 +0300
commit7baf93c711ad1af621b41314f59c1597fbd41ca5 (patch)
tree977e1cff2409d565e35575793eadd1e88a558a60 /intern/cycles/subd/subd_patch_table.h
parent40b367479c6fe23d6f2b6d822f2d5266485619f3 (diff)
Revert "Code cleanup to use array.data() rather than &array[0]."
This reverts commit 40b367479c6fe23d6f2b6d822f2d5266485619f3. Didn't build or solve any known issue. Please don't push changes without testing them first.
Diffstat (limited to 'intern/cycles/subd/subd_patch_table.h')
-rw-r--r--intern/cycles/subd/subd_patch_table.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/subd/subd_patch_table.h b/intern/cycles/subd/subd_patch_table.h
index 3166a1691d8..c8c7ecf9e47 100644
--- a/intern/cycles/subd/subd_patch_table.h
+++ b/intern/cycles/subd/subd_patch_table.h
@@ -43,7 +43,7 @@ namespace Far { struct PatchTable; }
#define PATCH_NODE_SIZE 1
struct PackedPatchTable {
- array<uint> table;
+ vector<uint> table;
size_t num_arrays;
size_t num_indices;