mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-15 00:50:38 +05:00
Fix pb with standard libraries
This commit is contained in:
parent
d46f50f94a
commit
7a2ad46e4c
@ -569,7 +569,7 @@ TCollection_AsciiString GEOM_Engine::DumpPython(int theDocID,
|
||||
// Make script to publish in study
|
||||
if ( isPublished )
|
||||
{
|
||||
map< int, string > anEntryToCommandMap; // sort publishing commands by object entry
|
||||
std::map< int, std::string > anEntryToCommandMap; // sort publishing commands by object entry
|
||||
for (anEntryToNameIt.Initialize( theObjectNames );
|
||||
anEntryToNameIt.More();
|
||||
anEntryToNameIt.Next())
|
||||
@ -602,11 +602,11 @@ TCollection_AsciiString GEOM_Engine::DumpPython(int theDocID,
|
||||
// bind a command to the last digit of the entry
|
||||
int tag =
|
||||
aEntry.SubString( aEntry.SearchFromEnd(":")+1, aEntry.Length() ).IntegerValue();
|
||||
anEntryToCommandMap.insert( make_pair( tag, aCommand.ToCString() ));
|
||||
anEntryToCommandMap.insert( std::make_pair( tag, aCommand.ToCString() ));
|
||||
}
|
||||
|
||||
// add publishing commands to the script
|
||||
map< int, string >::iterator anEntryToCommand = anEntryToCommandMap.begin();
|
||||
std::map< int, std::string >::iterator anEntryToCommand = anEntryToCommandMap.begin();
|
||||
for ( ; anEntryToCommand != anEntryToCommandMap.end(); ++anEntryToCommand ) {
|
||||
anUpdatedScript += (char*)anEntryToCommand->second.c_str();
|
||||
}
|
||||
|
@ -51,10 +51,10 @@ protected:
|
||||
|
||||
private:
|
||||
|
||||
bool myConcaveQuad;
|
||||
vector<bool> myConcaveSide;
|
||||
vector<gp_Pnt> myPoints;
|
||||
vector<GeomAdaptor_Surface> myPlanes;
|
||||
gp_Vec myQuadNormal;
|
||||
bool myConcaveQuad;
|
||||
std::vector<bool> myConcaveSide;
|
||||
std::vector<gp_Pnt> myPoints;
|
||||
std::vector<GeomAdaptor_Surface> myPlanes;
|
||||
gp_Vec myQuadNormal;
|
||||
};
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user