diff --git a/src/Graphic3d/Graphic3d_MaterialAspect.cxx b/src/Graphic3d/Graphic3d_MaterialAspect.cxx index e9359ee163..55197dfa3f 100644 --- a/src/Graphic3d/Graphic3d_MaterialAspect.cxx +++ b/src/Graphic3d/Graphic3d_MaterialAspect.cxx @@ -63,7 +63,7 @@ // for the class #include - +#include //-Aliases //-Global data definitions @@ -887,10 +887,8 @@ static Material theMaterials[] = { }; Standard_Integer Graphic3d_MaterialAspect::NumberOfMaterials() { -Standard_Integer n =sizeof(theMaterials)/sizeof(Material); - if( n > Graphic3d_NOM_DEFAULT ) { - cout << " *** Graphic3d_MaterialAspect::NumberOfMaterials() may return a badvalue due to incoherente size between material name array and enum" << endl; - } + Standard_STATIC_ASSERT(sizeof(theMaterials)/sizeof(Material) == Graphic3d_NOM_DEFAULT); + return Graphic3d_NOM_DEFAULT; }