Kaydet (Commit) a4e02844 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Try without std::back_inserter. Some tinderboxes don't like that.

Change-Id: I37b5da446abe123d0e0526b5556014df606e6156
üst 74335267
......@@ -125,8 +125,13 @@ void GL3DBarChart::create3DShapes()
p->setPosition(aTopLeft, aTopRight, aBottomRight);
}
// Transfer all Y-axis text objects to the shape collection.
std::copy(aYAxisTexts.begin(), aYAxisTexts.end(), std::back_inserter(maShapes));
{
// Transfer all Y-axis text objects to the shape collection.
std::vector<opengl3D::Text*>::iterator itText = aYAxisTexts.begin(), itTextEnd = aYAxisTexts.end();
for (; itText != itTextEnd; ++itText)
maShapes.push_back(*itText);
}
aYAxisTexts.clear();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment