Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
francoisbonneau committed Nov 3, 2023
1 parent e1e6c93 commit 053bae4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* SOFTWARE.
*
*/
#include <string>
#include <absl/strings/str_cat.h>

#include <geode/mesh/core/point_set.h>

Expand All @@ -33,8 +33,7 @@ namespace geode
{
using PointSet = PointSet< dimension >;
using PointSetColocation = PointSetColocation< dimension >;
const auto name =
"PointSetColocation" + absl::StrCat( dimension ) + "D";
const auto name = absl::StrCat( "PointSetColocation", dimension, "D" );
pybind11::class_< PointSetColocation >( module, name.c_str() )
.def( pybind11::init< const PointSet& >() )
.def( pybind11::init< const PointSet&, bool >() )
Expand Down
3 changes: 1 addition & 2 deletions bindings/python/src/inspector/solid_inspector.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ namespace geode
{
using SolidMesh = geode::SolidMesh< dimension >;
using SolidMeshInspector = geode::SolidMeshInspector< dimension >;
const auto name =
"SolidMeshInspector" + absl::StrCat( dimension ) + "D";
const auto name = absl::StrCat( "SolidMeshInspector", dimension, "D" );
pybind11::class_< SolidMeshInspector, SolidMeshAdjacency< dimension >,
SolidMeshColocation< dimension >,
SolidMeshDegeneration< dimension >,
Expand Down

0 comments on commit 053bae4

Please sign in to comment.