help-gplusplus
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Unexpected error when using hierarchy of template classes


From: Paul Pluzhnikov
Subject: Re: Unexpected error when using hierarchy of template classes
Date: Mon, 26 Sep 2005 13:07:19 -0700
User-agent: Gnus/5.1006 (Gnus v5.10.6) XEmacs/21.4 (Jumbo Shrimp, linux)

"JH Trauntvein" <j.trauntvein@comcast.net> writes:

> test.cpp:13: error: object missing in reference to 'Value::storage'

This looks like a gcc bug (but you need a language lawyer to say
for sure). Workarounds:

    { out << this->Value::storage; }      or
    { out << this->storage; }

Cheers,
-- 
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]