Skip to content

Commit 09e905d

Browse files
committed
Merge branch 'v15' into fix/replace-absl-string-view-with-std
2 parents 47e2c4b + 53cecab commit 09e905d

File tree

63 files changed

+386
-369
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+386
-369
lines changed

include/geode/inspector/brep_inspector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ namespace geode
5656
OPENGEODE_DISABLE_COPY( BRepInspector );
5757

5858
public:
59-
BRepInspector( const BRep& brep );
59+
explicit BRepInspector( const BRep& brep );
6060

6161
BRepInspectionResult inspect_brep() const;
6262
};

include/geode/inspector/criterion/adjacency/brep_meshes_adjacency.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ namespace geode
6666
OPENGEODE_DISABLE_COPY( BRepComponentMeshesAdjacency );
6767

6868
public:
69-
BRepComponentMeshesAdjacency( const BRep& model );
69+
explicit BRepComponentMeshesAdjacency( const BRep& model );
7070

7171
~BRepComponentMeshesAdjacency();
7272

include/geode/inspector/criterion/adjacency/section_meshes_adjacency.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ namespace geode
6161
OPENGEODE_DISABLE_COPY( SectionComponentMeshesAdjacency );
6262

6363
public:
64-
SectionComponentMeshesAdjacency( const Section& model );
64+
explicit SectionComponentMeshesAdjacency( const Section& model );
6565

6666
~SectionComponentMeshesAdjacency();
6767

include/geode/inspector/criterion/adjacency/solid_adjacency.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace geode
4545
OPENGEODE_DISABLE_COPY( SolidMeshAdjacency );
4646

4747
public:
48-
SolidMeshAdjacency( const SolidMesh< dimension >& mesh );
48+
explicit SolidMeshAdjacency( const SolidMesh< dimension >& mesh );
4949

5050
~SolidMeshAdjacency();
5151

include/geode/inspector/criterion/adjacency/surface_adjacency.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace geode
4545
OPENGEODE_DISABLE_COPY( SurfaceMeshAdjacency );
4646

4747
public:
48-
SurfaceMeshAdjacency( const SurfaceMesh< dimension >& mesh );
48+
explicit SurfaceMeshAdjacency( const SurfaceMesh< dimension >& mesh );
4949

5050
~SurfaceMeshAdjacency();
5151

include/geode/inspector/criterion/brep_meshes_inspector.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ namespace geode
6262
OPENGEODE_DISABLE_COPY( BRepMeshesInspector );
6363

6464
public:
65-
BRepMeshesInspector( const BRep& brep );
65+
explicit BRepMeshesInspector( const BRep& brep );
6666

6767
BRepMeshesInspectionResult inspect_brep_meshes() const;
6868
};

include/geode/inspector/criterion/colocation/component_meshes_colocation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ namespace geode
5959
OPENGEODE_DISABLE_COPY( ComponentMeshesColocation );
6060

6161
public:
62-
ComponentMeshesColocation( const Model& model );
62+
explicit ComponentMeshesColocation( const Model& model );
6363

6464
~ComponentMeshesColocation();
6565

include/geode/inspector/criterion/colocation/edgedcurve_colocation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ namespace geode
4444
OPENGEODE_DISABLE_COPY( EdgedCurveColocation );
4545

4646
public:
47-
EdgedCurveColocation( const EdgedCurve< dimension >& mesh );
47+
explicit EdgedCurveColocation( const EdgedCurve< dimension >& mesh );
4848

4949
~EdgedCurveColocation();
5050

include/geode/inspector/criterion/colocation/pointset_colocation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ namespace geode
4444
OPENGEODE_DISABLE_COPY( PointSetColocation );
4545

4646
public:
47-
PointSetColocation( const PointSet< dimension >& mesh );
47+
explicit PointSetColocation( const PointSet< dimension >& mesh );
4848

4949
~PointSetColocation();
5050

include/geode/inspector/criterion/colocation/solid_colocation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace geode
4545
OPENGEODE_TEMPLATE_ASSERT_3D( dimension );
4646

4747
public:
48-
SolidMeshColocation( const SolidMesh< dimension >& mesh );
48+
explicit SolidMeshColocation( const SolidMesh< dimension >& mesh );
4949

5050
~SolidMeshColocation();
5151

0 commit comments

Comments
 (0)