On Wed, Feb 11, 2009 at 4:00 AM, Dean McNamee <[email protected]> wrote:
> Hey Jay,
>
> When you inherit from a templated base, and explicitly call the
> constructor, you must instantiate the template, otherwise it's
> ambiguous.
>
>
> The line:
>
> explicit InternalGetCommandsRequest(CallbackType* callback) :
> CancelableRequest(callback) {
>
> Should be:
>
> explicit InternalGetCommandsRequest(CallbackType* callback) :
> CancelableRequest<InternalGetCommandsCallback>(callback) {
>
> That compiles fine for me here.
>

Success!  Thanks Dean.  How could I have ever doubted gcc? :-)

-- 
James Hawkins

--~--~---------~--~----~------------~-------~--~----~
Chromium Developers mailing list: [email protected] 
View archives, change email options, or unsubscribe: 
    http://groups.google.com/group/chromium-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to