From 16d202d4d6b6d702ddb4f0c83a8805b05808e1be Mon Sep 17 00:00:00 2001 From: adam Date: Thu, 30 Jul 2009 16:11:50 +0000 Subject: [PATCH] Remove warnings --- src/GEOMAlgo/GEOMAlgo_ShapeInfo.cxx | 8 ++++---- src/GEOMBase/GEOMBase_Helper.cxx | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/GEOMAlgo/GEOMAlgo_ShapeInfo.cxx b/src/GEOMAlgo/GEOMAlgo_ShapeInfo.cxx index e34a909fd..afcd3b550 100644 --- a/src/GEOMAlgo/GEOMAlgo_ShapeInfo.cxx +++ b/src/GEOMAlgo/GEOMAlgo_ShapeInfo.cxx @@ -805,7 +805,7 @@ void DumpPosition(const gp_Ax3& aAx3) //======================================================================= void DumpKindOfBounds(const GEOMAlgo_KindOfBounds aKB) { - char *pStr[]={ + const char *pStr[]={ "KB_UNKNOWN", "KB_TRIMMED", "KB_INFINITE" @@ -822,7 +822,7 @@ void DumpKindOfBounds(const GEOMAlgo_KindOfBounds aKB) //======================================================================= void DumpKindOfClosed(const GEOMAlgo_KindOfClosed aKC) { - char *pStr[]={ + const char *pStr[]={ "KC_UNKNOWN", "KC_CLOSED", "KC_NOTCLOSED" @@ -839,7 +839,7 @@ void DumpKindOfClosed(const GEOMAlgo_KindOfClosed aKC) //======================================================================= void DumpKindOfShape(const GEOMAlgo_KindOfShape aKS) { - char *pStr[]={ + const char *pStr[]={ "KS_UNKNOWN", "KS_SPHERE", "KS_CYLINDER", @@ -863,7 +863,7 @@ void DumpKindOfShape(const GEOMAlgo_KindOfShape aKS) //======================================================================= void DumpKindOfName(const GEOMAlgo_KindOfName aKS) { - char *pStr[]={ + const char *pStr[]={ "KN_UNKNOWN", "KN_SPHERE", "KN_CYLINDER", diff --git a/src/GEOMBase/GEOMBase_Helper.cxx b/src/GEOMBase/GEOMBase_Helper.cxx index 326998aed..328a5d398 100755 --- a/src/GEOMBase/GEOMBase_Helper.cxx +++ b/src/GEOMBase/GEOMBase_Helper.cxx @@ -623,7 +623,7 @@ char* GEOMBase_Helper::getEntry( GEOM::GEOM_Object_ptr object ) const } } } - return ""; + return (char*)""; } //================================================================ -- 2.39.2