Skip to content

Commit

Permalink
Update code style
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed May 14, 2016
1 parent a20d290 commit 04d4ed8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dart/dynamics/BoxShape.cpp
Expand Up @@ -64,7 +64,7 @@ const std::string& BoxShape::getType() const
//==============================================================================
const std::string& BoxShape::getStaticType()
{
static const std::string type = ("BoxShape");
static const std::string type("BoxShape");
return type;
}

Expand Down
2 changes: 1 addition & 1 deletion dart/dynamics/CylinderShape.cpp
Expand Up @@ -61,7 +61,7 @@ const std::string& CylinderShape::getType() const
//==============================================================================
const std::string& CylinderShape::getStaticType()
{
static const std::string type = ("CylinderShape");
static const std::string type("CylinderShape");
return type;
}

Expand Down
2 changes: 1 addition & 1 deletion dart/dynamics/EllipsoidShape.cpp
Expand Up @@ -59,7 +59,7 @@ const std::string& EllipsoidShape::getType() const
//==============================================================================
const std::string& EllipsoidShape::getStaticType()
{
static const std::string type = ("EllipsoidShape");
static const std::string type("EllipsoidShape");
return type;
}

Expand Down
2 changes: 1 addition & 1 deletion dart/dynamics/LineSegmentShape.cpp
Expand Up @@ -89,7 +89,7 @@ const std::string& LineSegmentShape::getType() const
//==============================================================================
const std::string& LineSegmentShape::getStaticType()
{
static const std::string type = ("LineSegmentShape");
static const std::string type("LineSegmentShape");
return type;
}

Expand Down
2 changes: 1 addition & 1 deletion dart/dynamics/MeshShape.cpp
Expand Up @@ -161,7 +161,7 @@ const std::string& MeshShape::getType() const
//==============================================================================
const std::string& MeshShape::getStaticType()
{
static const std::string type = ("MeshShape");
static const std::string type("MeshShape");
return type;
}

Expand Down
2 changes: 1 addition & 1 deletion dart/dynamics/PlaneShape.cpp
Expand Up @@ -65,7 +65,7 @@ const std::string& PlaneShape::getType() const
//==============================================================================
const std::string& PlaneShape::getStaticType()
{
static const std::string type = ("PlaneShape");
static const std::string type("PlaneShape");
return type;
}

Expand Down
2 changes: 1 addition & 1 deletion dart/dynamics/SoftMeshShape.cpp
Expand Up @@ -70,7 +70,7 @@ const std::string& SoftMeshShape::getType() const
//==============================================================================
const std::string& SoftMeshShape::getStaticType()
{
static const std::string type = ("SoftMeshShape");
static const std::string type("SoftMeshShape");
return type;
}

Expand Down

0 comments on commit 04d4ed8

Please sign in to comment.