Skip to content

Commit

Permalink
Add std prefix for find().
Browse files Browse the repository at this point in the history
BUG=none
TEST=none


Review URL: http://codereview.chromium.org/7980049

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102227 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
zhenghao@google.com committed Sep 22, 2011
1 parent f482b59 commit b05c3db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ bool WebGraphicsContext3DInProcessCommandBufferImpl::readBackFramebuffer(

void WebGraphicsContext3DInProcessCommandBufferImpl::synthesizeGLError(
WGC3Denum error) {
if (find(synthetic_errors_.begin(), synthetic_errors_.end(), error) ==
if (std::find(synthetic_errors_.begin(), synthetic_errors_.end(), error) ==
synthetic_errors_.end()) {
synthetic_errors_.push_back(error);
}
Expand Down

0 comments on commit b05c3db

Please sign in to comment.