Revision: 11359 Author: [email protected] Date: Tue Apr 17 09:02:36 2012 Log: Fix typo in lazy-instance.h.
There was no build error since we never used LazyDynamicInstance's default parameter.
BUG=v8:2091 Review URL: https://chromiumcodereview.appspot.com/10103032 Patch from Philippe Liard <[email protected]>. http://code.google.com/p/v8/source/detail?r=11359 Modified: /branches/bleeding_edge/src/lazy-instance.h ======================================= --- /branches/bleeding_edge/src/lazy-instance.h Thu Apr 5 08:12:28 2012 +++ /branches/bleeding_edge/src/lazy-instance.h Tue Apr 17 09:02:36 2012 @@ -250,7 +250,7 @@ template <typename T, - typename CreateTrait = DefaultConstructTrait<T>, + typename CreateTrait = DefaultCreateTrait<T>, typename InitOnceTrait = SingleThreadInitOnceTrait, typename DestroyTrait = LeakyInstanceTrait<T> > struct LazyDynamicInstance { -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
