From 5ae8eb8203ab46c0c2f2380fcdd0505e141ce1c3 Mon Sep 17 00:00:00 2001 From: kervala Date: Mon, 6 Sep 2010 20:42:13 +0200 Subject: [PATCH] Fixed: Compilation under Windows --- code/ryzom/server/src/mirror_service/data_set_ms.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/ryzom/server/src/mirror_service/data_set_ms.h b/code/ryzom/server/src/mirror_service/data_set_ms.h index 47f1a2a37..a865ce81e 100644 --- a/code/ryzom/server/src/mirror_service/data_set_ms.h +++ b/code/ryzom/server/src/mirror_service/data_set_ms.h @@ -989,7 +989,7 @@ public: /// Set a property list. Must be preceded by setupDestPropTrackersInterestedByDelta() template - void applyListPropChange( TDataSetIndex entityIndex, TPropertyIndex propIndex, NLNET::TServiceId srcServiceId, std::slist& tempList, NLMISC::TGameCycle timestamp ) + void applyListPropChange( TDataSetIndex entityIndex, TPropertyIndex propIndex, NLNET::TServiceId srcServiceId, slist& tempList, NLMISC::TGameCycle timestamp ) { // Set if the received timestamp is newer than the stored timestamp NLMISC::TGameCycle& localTimestamp = _PropertyContainer.PropertyValueArrays[propIndex].ChangeTimestamps[entityIndex]; @@ -1033,14 +1033,14 @@ public: /// Erase a list and set the new one instead template - void replaceList( TDataSetIndex entityIndex, TPropertyIndex propIndex, std::slist& tempList ) + void replaceList( TDataSetIndex entityIndex, TPropertyIndex propIndex, slist& tempList ) { // Clear old list CMirrorPropValueListMS theList( *this, TDataSetRow(entityIndex), propIndex ); theList.clear(); // Paste new list - typename std::slist::iterator it; + typename slist::iterator it; for ( it=tempList.begin(); it!=tempList.end(); ++it ) { theList.push_front( *it ); // re-reverse ordering