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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2016-08-18 00:49:55 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2016-08-18 03:24:13 +0300
commite8b5e66db18c315970dfcb063bced40264841228 (patch)
treee3c95808bdfed3a8beb5d9d4313a180b38324590 /intern/cycles/subd/subd_patch_table.h
parent7baf93c711ad1af621b41314f59c1597fbd41ca5 (diff)
Code cleanup to use array.data() rather than &array[0]
(Now without the build errors)
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 c8c7ecf9e47..3166a1691d8 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 {
- vector<uint> table;
+ array<uint> table;
size_t num_arrays;
size_t num_indices;