EgtMachKernel 1.9k2 :
- aggiunta gestione massimo affondamento di utensile TdbGetCurrToolMaxDepth - for each (.. in ..) sostituito da for ( .. : ..) vero costrutto C++.
This commit is contained in:
+1
-1
@@ -350,7 +350,7 @@ Machine::GetCurrHeadCollGroups( INTVECTOR& vIds) const
|
||||
vIds.push_back( m_nCalcHeadId) ;
|
||||
// recupero stringhe con gruppi ausiliari di collisione
|
||||
const STRVECTOR& vsOthColl = pHead->GetOtherCollGroups() ;
|
||||
for each ( const auto& sOthColl in vsOthColl) {
|
||||
for ( const auto& sOthColl : vsOthColl) {
|
||||
string sGrp, sSub ;
|
||||
Split( sOthColl, "/", true, sGrp, sSub) ;
|
||||
int nId = GetGroup( sGrp) ;
|
||||
|
||||
Reference in New Issue
Block a user