This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Please help with these two errors


>Change it to this:
>    virtual typename VVc_diagram_2<Traits_,
> AppKernel_>::Vertex_feature_2::Type type () const
>    {
>      return Vertex_feature_2::CIRCULAR;
>    }

>Or introduce a helpful typedef in Circular_arc_2:
>    typedef typename VVc_diagram_2<Traits_,
> AppKernel_>::Vertex_feature_2::Type Type;
>    virtual Type type () const
>    {
>      return Vertex_feature_2::CIRCULAR;
>    }

Hi Eljay...

Thank you very much. both of them works. 




John (Eljay) Love-Jensen wrote:
> 
> Hi mahmoodn,
> 
> In your code snippet, this Circular_arc_2 routine is malformed C++.
> 
>     virtual typename Vertex_feature_2::Type type () const
>     {
>       return (CIRCULAR);
>     }
> 
> Change it to this:
> 
>     virtual typename VVc_diagram_2<Traits_,
> AppKernel_>::Vertex_feature_2::Type type () const
>     {
>       return Vertex_feature_2::CIRCULAR;
>     }
> 
> Or introduce a helpful typedef in Circular_arc_2:
> 
>     typedef typename VVc_diagram_2<Traits_,
> AppKernel_>::Vertex_feature_2::Type Type;
> 
>     virtual Type type () const
>     {
>       return Vertex_feature_2::CIRCULAR;
>     }
> 
> HTH,
> --Eljay
> 
> 

-- 
View this message in context: http://www.nabble.com/Please-help-with-these-two-errors-tp14787660p14878819.html
Sent from the gcc - Help mailing list archive at Nabble.com.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]