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_converter_orient.cc')
-rw-r--r--intern/opensubdiv/internal/opensubdiv_converter_orient.cc21
1 files changed, 11 insertions, 10 deletions
diff --git a/intern/opensubdiv/internal/opensubdiv_converter_orient.cc b/intern/opensubdiv/internal/opensubdiv_converter_orient.cc
index 449e9028180..e3367fc6314 100644
--- a/intern/opensubdiv/internal/opensubdiv_converter_orient.cc
+++ b/intern/opensubdiv/internal/opensubdiv_converter_orient.cc
@@ -24,10 +24,11 @@ namespace opensubdiv_capi {
void checkOrientedVertexConnectivity(const int num_vertex_edges,
const int num_vertex_faces,
- const int* vertex_edges,
- const int* vertex_faces,
- const int* dst_vertex_edges,
- const int* dst_vertex_faces) {
+ const int *vertex_edges,
+ const int *vertex_faces,
+ const int *dst_vertex_edges,
+ const int *dst_vertex_faces)
+{
#ifndef NDEBUG
for (int i = 0; i < num_vertex_faces; ++i) {
bool found = false;
@@ -54,12 +55,12 @@ void checkOrientedVertexConnectivity(const int num_vertex_edges,
}
}
#else
- (void) num_vertex_edges;
- (void) num_vertex_faces;
- (void) vertex_edges;
- (void) vertex_faces;
- (void) dst_vertex_edges;
- (void) dst_vertex_faces;
+ (void)num_vertex_edges;
+ (void)num_vertex_faces;
+ (void)vertex_edges;
+ (void)vertex_faces;
+ (void)dst_vertex_edges;
+ (void)dst_vertex_faces;
#endif
}