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:
authorSybren A. Stüvel <sybren@stuvel.eu>2018-01-16 18:28:10 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2018-01-16 18:28:10 +0300
commit4e0673927a92f639a9dc108ef0c0fb00c825e4c2 (patch)
tree41af5598f50cdf68e56f9e216167bb05d88c508e /source/blender/alembic
parent6db0fd65abc6e6d0fb75f35771eee5ca8f113147 (diff)
Alembic: don't explicitly pass NULL
Diffstat (limited to 'source/blender/alembic')
-rw-r--r--source/blender/alembic/intern/abc_customdata.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/alembic/intern/abc_customdata.cc b/source/blender/alembic/intern/abc_customdata.cc
index ddc83a6aa60..b3b015c7abf 100644
--- a/source/blender/alembic/intern/abc_customdata.cc
+++ b/source/blender/alembic/intern/abc_customdata.cc
@@ -285,7 +285,7 @@ static void read_custom_data_mcols(const std::string & iobject_full_name,
{
C3fArraySamplePtr c3f_ptr = C3fArraySamplePtr();
C4fArraySamplePtr c4f_ptr = C4fArraySamplePtr();
- Alembic::Abc::UInt32ArraySamplePtr indices(NULL);
+ Alembic::Abc::UInt32ArraySamplePtr indices;
bool use_c3f_ptr;
bool is_facevarying;