wohaph / keyczar

Automatically exported from code.google.com/p/keyczar
0 stars 0 forks source link

Missing call to std:: for find() in base/observer_list.h #95

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The line in base/observer_list.h:
83: DCHECK(find(observers_.begin(), observers_.end(), obs) == observers_.end())

Needs to become:
DCHECK(std::find(observers_.begin(), observers_.end(), obs) == observers_.end())

As when compiling it in other build systems this causes an unknown symbol.

Original issue reported on code.google.com by m...@pbrooks.net on 21 Apr 2012 at 3:23

GoogleCodeExporter commented 9 years ago
Change applied.  This will be in the next release.  Thanks!

Original comment by swillden@google.com on 7 May 2012 at 1:19