Skip to content

Commit 31aad74

Browse files
committed
astyle
1 parent 7c6bf38 commit 31aad74

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

source/pdal/pdalc_pipeline.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ extern "C"
167167
{
168168
if (! ptr->m_executed)
169169
throw pdal_error("Pipeline has not been executed!");
170-
170+
171171
std::stringstream strm;
172172
MetadataNode meta = ptr->manager->pointTable().layout()->toMetadata();
173173
MetadataNode root = meta.clone("schema");

tests/pdal/test_pdalc_pipeline.c.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ TEST testPDALGetPipelineAsString(void)
149149
char json10[10];
150150
size = PDALGetPipelineAsString(pipeline, json10, 10);
151151

152-
if (size != 9 )
152+
if (size != 9)
153153
{
154154
PDALDisposePipeline(pipeline);
155155
pipeline = NULL;
@@ -220,7 +220,7 @@ TEST testPDALGetPipelineMetadata(void)
220220
char json10[10];
221221
size = PDALGetPipelineMetadata(pipeline, json10, 10);
222222

223-
if (size != 9 )
223+
if (size != 9)
224224
{
225225
PDALDisposePipeline(pipeline);
226226
pipeline = NULL;
@@ -284,7 +284,7 @@ TEST testPDALGetPipelineSchema(void)
284284
char json10[10];
285285
size = PDALGetPipelineSchema(pipeline, json10, 10);
286286

287-
if (size != 9 )
287+
if (size != 9)
288288
{
289289
PDALDisposePipeline(pipeline);
290290
pipeline = NULL;

tests/pdal/test_pdalc_pointlayout.c.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,14 @@ TEST testPDALFindDimType(void)
129129
success &= (PDALGetDimTypeIdName(expected, name, 64) > 0);
130130

131131
actual = PDALFindDimType(NULL, name);
132-
success &= (idUnknown == actual.id);
132+
success &= (idUnknown == actual.id);
133133
success &= (typeNone == actual.type);
134134

135135
success &= (fabs(1.0 - actual.scale) < tolerance);
136136
success &= (fabs(actual.offset) < tolerance);
137137

138138
actual = PDALFindDimType(gLayout, name);
139-
success &= (expected.id == actual.id);
139+
success &= (expected.id == actual.id);
140140
success &= (expected.type == actual.type);
141141

142142
success &= (fabs(expected.scale - actual.scale) < tolerance);

tests/pdal/test_pdalc_pointview.c.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ TEST testPDALGetPointViewSize(void)
166166
PDALDisposePointView(view);
167167
ASSERT(size > 0);
168168

169-
169+
170170
PASS();
171171
}
172172

@@ -189,7 +189,7 @@ TEST testPDALGetMeshSize(void)
189189
PDALDisposePointView(view);
190190
ASSERT(size == 2114);
191191

192-
192+
193193
PASS();
194194
}
195195

@@ -538,7 +538,7 @@ TEST testPDALGetPackedPoint(void)
538538

539539
size_t expected = (hasView && hasDims && hasBuffer ? layoutPointSize : 0);
540540
size_t actual = PDALGetPackedPoint(
541-
hasView ? view : NULL, hasDims ? dims : NULL, i, hasBuffer ? buffer : NULL);
541+
hasView ? view : NULL, hasDims ? dims : NULL, i, hasBuffer ? buffer : NULL);
542542

543543
if (expected != actual)
544544
{

0 commit comments

Comments
 (0)