rename MakeNewObject to Create

This commit is contained in:
Mathieu Lacage
2007-06-04 16:32:37 +02:00
parent 4d5a66d6e5
commit 01f37ccb65
14 changed files with 89 additions and 89 deletions

View File

@@ -28,7 +28,7 @@ int main (int argc, char *argv[])
std::vector< Ptr<BaseA> > objlist;
for (int i = 0; i < nobjects; ++i)
objlist.push_back (MakeNewObject<BaseA> ());
objlist.push_back (Create<BaseA> ());
for (int swapCounter = nswaps; swapCounter; --swapCounter)
{