[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: FYI: c++: avoid GCC 8 warnings
From: |
Hans Åberg |
Subject: |
Re: FYI: c++: avoid GCC 8 warnings |
Date: |
Wed, 15 Aug 2018 23:26:19 +0200 |
> On 15 Aug 2018, at 19:38, Akim Demaille <address@hidden> wrote:
>
> The problem is with locations that don't have a constructor, such as
> Span (in calc.cc) which is POD.
What is this file. I haven't seen the issue with GCC8, but perhaps the warning
is not on.
> It is POD on purpose: so that we can
> use that structure to test glr.cc which cannot use non POD in its
> (C) stacks.
Can't you use std::deque?