C++ Logo

sg15

Advanced search

Re: Questions about wording and design intention for header units and ideas

From: Boris Kolpackov <boris_at_[hidden]>
Date: Sun, 21 May 2023 10:56:29 +0200
Just one to point out that the assumption in the motivating example
(that started this discussion) is incorrect:

> On 5/17/23 2:16 AM, "许传奇(夜灯)" <chuanqi.xcq_at_[hidden]> wrote:
>
> > First, the motivation example:
> >
> > ```
> > // a.cpp
> > import "foo.h";
> >
> > // b.cpp
> > #define M 43
> > import "foo.h"
> > ```
> >
> > The question is, for build systems, how can they know if they should
> > use the same BMI for these 2 imports. Since **currently** the build
> > systems don't have a **good** method to know whether a macro is
> > interesting to a specific file.

The standard is pretty clear that an imported header does not "see"
any macros defined by the importer.

Received on 2023-05-21 08:56:29