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>2019-01-15 20:50:24 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2019-01-16 12:59:22 +0300
commit3d4e92eb9625c8cfd09cba650ff292b0eb634c0b (patch)
tree35dfc4ccf524af171d1f1a5255c30b4cdf6d1f25 /source/blender/alembic/intern/abc_mesh.h
parent3ce9bcee70537a52f8d802abfb9e14c34f9a9251 (diff)
Alembic: C++11 doesn't need the space between '> >'
C++11 doesn't need the space between '> >' in a nested templated declaration, so instead of `std::vector<std::pair<a, b> >` we can now write `std::vector<std::pair<a, b> >`.
Diffstat (limited to 'source/blender/alembic/intern/abc_mesh.h')
-rw-r--r--source/blender/alembic/intern/abc_mesh.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/alembic/intern/abc_mesh.h b/source/blender/alembic/intern/abc_mesh.h
index b1842b14d17..a3fc7c0a4f7 100644
--- a/source/blender/alembic/intern/abc_mesh.h
+++ b/source/blender/alembic/intern/abc_mesh.h
@@ -70,7 +70,7 @@ protected:
void writeSubD(struct Mesh *mesh);
void writeArbGeoParams(struct Mesh *mesh);
- void getGeoGroups(struct Mesh *mesh, std::map<std::string, std::vector<int32_t> > &geoGroups);
+ void getGeoGroups(struct Mesh *mesh, std::map<std::string, std::vector<int32_t>> &geoGroups);
/* fluid surfaces support */
void getVelocities(struct Mesh *mesh, std::vector<Imath::V3f> &vels);