C++ Logo

sg15

Advanced search

Re: [isocpp-ext] Can we expect that all C++ source files can have the same suffix?

From: Nicolai Josuttis <nico_at_[hidden]>
Date: Tue, 19 Apr 2022 14:03:48 +0200
Great!

That looks like solving

https://developercommunity.visualstudio.com/t/Options-interface-and-internalPartitio/10013379

Thanks

  Nico

 

Am 18.04.2022 um 22:41 schrieb Gabriel Dos Reis:
>
> For those two options, you can also pointer them to
>
>
>
> /interface
> <https://docs.microsoft.com/en-us/cpp/build/reference/interface?view=msvc-170>
>
> /internalPartition
> <https://docs.microsoft.com/en-us/cpp/build/reference/internal-partition?view=msvc-170>
>
>
>
> which are the official documentation pages. There is no “need
> suffix”. Sorry those two pages were missing earlier.
>
>
>
> -- Gaby
>
>
>
> *From:* Ext <ext-bounces_at_[hidden]> *On Behalf Of *Nicolai
> Josuttis via Ext
> *Sent:* Sunday, April 17, 2022 2:24 AM
> *To:* Gabriel Dos Reis <gdr_at_[hidden]>; ext_at_[hidden]
> *Cc:* Nicolai Josuttis <nico_at_[hidden]>
> *Subject:* Re: [isocpp-ext] [SG15] Can we expect that all C++ source
> files can have the same suffix?
>
>
>
> Awesome, thanks.
>
> Here is what I document now:
>
> - **Interface files** (module interface or interface partition)
> need suffix `.ixx` or the option `/interface`
> - **Internal partitions** need the option `/internalPartition`
> (the suffix doesn't matter; they recommend the usual suffix such
> as .cpp).
> - **Module implementation units** need no specific module treatment
> (use the usual suffix with no special option such as .cpp)
> - Options `/interface` and `/internalPartition` may not be used
> together
>
> I also sent this to twitter because there were other answers given.
>
> Thanks again
>
> Nico
>
>
>
> Am 17.04.2022 um 03:25 schrieb Gabriel Dos Reis:
>
> [Nico]
>
> 1. still I don't know the suffix for internal partitions
>
>
>
> I answered this (multiple times) a few months back when you asked
> me to review part of the chapter of your book. For internal
> partitions, use whatever suffix (e.g. .C, .cxx, .cpp, .cc) you use
> for your normal C++ source file. MSVC does not recommend nor use
> a distinct suffix for internal partitions; they aren’t interface
> source files. The “.ixx” suffix is for module interface files
> (primary or partitions). The suffix isn’t to make the compiler’s
> job easier; it is to support other tools that don’t read the
> content of C++ source files in order to determine whether it
> defines an interface or something else.
>
>
>
> -- Gaby
>
>
>
> *From:* Ext <ext-bounces_at_[hidden]>
> <mailto:ext-bounces_at_[hidden]> *On Behalf Of *Nico Josuttis
> via Ext
> *Sent:* Saturday, April 16, 2022 3:54 AM
> *To:* ext_at_[hidden]; Roger Orr via Ext
> <ext_at_[hidden]> <mailto:ext_at_[hidden]>
> *Cc:* Nico Josuttis <nico_at_[hidden]> <mailto:nico_at_[hidden]>
> *Subject:* Re: [isocpp-ext] [SG15] Can we expect that all C++
> source files can have the same suffix?
>
>
>
> Hi Roger,
> I agree.
> However, cmake and other tools use the command line. So, they
> would have these problems solved.
>
> Even for Visual Studio, if there is support for arbitrary file
> extensions and no need for specific command line options, code
> coming from different compiler can just be used as it is.
> So, programmers could have all files with suffix .cpp (as is fine
> for gcc) and just add them to the Visual Studio project without
> further action.
>
> While of course VC++ still can reommend special suffixes like .ixx
> (still I don't know the suffix for internal partitions), the other
> compilers would not have to adopt their convention and the
> community will decide which suffix "wins" (as it happened with
> ".cpp" which came from a Microsoft, although strangly it is not
> used by them in a modified form for modules).
>
> I will today publish a script that fix the problems Visual Studio
> has with module files for the command line. That way, programmers
> can write their first portable module programm... (portable in the
> practical not formal sense, Gaby).
>
> As usual, correct me if I miss something.
>
>
> Am 16. April 2022 12:10:03 MESZ schrieb Roger Orr via Ext
> <ext_at_[hidden]>:
>
> Hello Nico,
>
> I am slightly puzzled by the use of 'command line' and 'command' in your email.
>
>
>
> In my own experience I suspect few of the C++ programmers I work with ever compile with a command line; they either work within an IDE or run a build script, likely using cmake. It us unclear to me what is the benefit of seeking a unified command line that most programmers are not even aware of.
>
>
>
> Regards,
>
> Roger.
>
>
>
>
>
>
>
> -----Original Message-----
>
> From: Ext [mailto:ext-bounces_at_[hidden] <mailto:ext-bounces_at_[hidden]>] On Behalf Of Nico Josuttis via Ext
>
> Sent: 16 April 2022 07:43
>
> To: Gabriel Dos Reis; ext_at_[hidden]; sg15_at_[hidden]
>
> Cc: Nico Josuttis; Nathan Sidwell
>
> Subject: Re: [isocpp-ext] [SG15] Can we expect that all C++ source files can have the same suffix?
>
>
>
>
>
> Gaby,
>
>
>
> you want me to tell programmers that we have portable examples, for which unfortunately there is not defined HOW to deal with them?
>
> And selling this as "you can use modules in practice"? 🤔
>
>
>
> Of course for programmers a portable program implies that
>
> a) I don't have to rename files
>
> b) I don't have to use different conmand-line options for files having the same suffix
>
> c) I can compile all code with a single command
>
>
>
> Once we have that, we can teach content and programmers will use it. So far, the clear conclusion is that you cannot use modules in practice.
>
>
>
> It would be absolutely no problem to provide that for Visual C++. Ideally ignoring file extensions and analyze C++ file content.
>
> Therefore, I wonder why you do not WANT that (and at the same time tell that you are interesting that modules become widely used).
>
>
>
> And, BTW, I am desperately looking for the file extension Visual C++ expect for internal patition units
>
> (to skip /internalPartition).
>
> PLEASE just tell us.
>
>
>
> Thanks
>
>
>
>
>
>
>
> Am 15. April 2022 21:46:13 MESZ schrieb Gabriel Dos Reis <gdr_at_[hidden]>:
>
> Fortunately, there IS a portable C++ example of “hello world” program,
>
> today.
>
>
>
> *How* to compile a given source file has always depended on compilers,
>
> their environment of invocations, and supporting toolsets. That won’t
>
> change. And Modules don’t have a goal of changing that.
>
>
>
> Requiring that the set of satellite files that a compiler has to produce depends solely on the contents of the source file, and not on the invocation command lines, isn’t going to work in real world, production environments. That is what build systems are for, to abstract over the details. My hope is that professional teaching of programming with modules direct C++ programmers to relying on their build systems.
>
>
>
> We are having a conversation in SG15 about common ways of describing to
>
> build systems what are the needs of a program and library, and let the
>
> build system make the build happens. And that is not restricted to
>
> modules, even though they make the conversation urgent.
>
>
>
> -- Gaby
>
>
>
> From: Nico Josuttis <nico_at_[hidden]>
>
> Sent: Friday, April 15, 2022 12:05 PM
>
> To: ext_at_[hidden]; Gabriel Dos Reis via Ext
>
> <ext_at_[hidden]>; ext_at_[hidden]; sg15_at_[hidden]
>
> Cc: Gabriel Dos Reis <gdr_at_[hidden]>; Nathan Sidwell <nathan_at_[hidden]>
>
> Subject: Re: [isocpp-ext] [SG15] Can we expect that all C++ source files can have the same suffix?
>
>
>
> haha,
>
> I REALLY would like to have the first portable "hello module" example.
>
>
>
> Currently, there is simply no way to have it. That's really a shame.
>
>
>
>
>
> Am 15. April 2022 20:46:59 MESZ schrieb Gabriel Dos Reis via Ext
>
> <ext_at_[hidden]<mailto:ext_at_[hidden] <mailto:ext_at_[hidden]%3cmailto:ext_at_[hidden]>>>:
>
>
>
> Nathan - you recount is all correct.
>
>
>
> I know I've mentioned it more than once, but I find it unsettling,
>
> given there was great opposition to there being a (two way?) mapping
>
> between file names and module names, that there is a move in the
>
> direction of making file names 'significant'. ISTM that the desire for
>
> bob.$REGULARSUFFIX and alice.$MODULESUFFIX is taking us all the way
>
> back to the first objection above about having two languages.
>
>
>
> I am not seeing any movement to make filename suffixes significant in
>
> the linguistic interpretation, by the compiler, of the content of
>
> source file. Maybe I am not looking right; but I would definitely
>
> recommend against such move. There are extra linguistic considerations
>
> that might force a toolset (not just a compiler) to require certain
>
> suffixes, but those suffixes do not determine the meaning a C++ program
>
> -- this is not different from compilers like GCC or MSVC refusing to
>
> compile in default mode files ending with ".h" or similar because they
>
> generally have other connotations.
>
>
>
> For some reasons, the topic of the "right" suffix seems to generate
>
> more passion than the topic of what can we do with modules, so maybe we
>
> are already doing a lot with modules 😝
>
>
>
> -- Gaby
>
>
>
> -----Original Message-----
>
> From: Ext
>
> <ext-bounces_at_[hidden]<mailto:ext-bounces_at_[hidden] <mailto:ext-bounces_at_[hidden]%3cmailto:ext-bounces_at_[hidden]>>> On Behalf Of Nathan Sidwell via Ext
>
> Sent: Friday, April 15, 2022 11:21 AM
>
> To: sg15_at_[hidden]<mailto:sg15_at_[hidden] <mailto:sg15_at_[hidden]%3cmailto:sg15_at_[hidden]>>; ext_at_[hidden]<mailto:ext_at_[hidden] <mailto:ext_at_[hidden]%3cmailto:ext_at_[hidden]>>; WG21 Tooling Study Group SG15 <tooling_at_[hidden]<mailto:tooling_at_[hidden] <mailto:tooling_at_[hidden]%3cmailto:tooling_at_[hidden]>>>
>
> Cc: Nathan Sidwell <nathan_at_[hidden]<mailto:nathan_at_[hidden] <mailto:nathan_at_[hidden]%3cmailto:nathan_at_[hidden]>>>
>
> Subject: Re: [isocpp-ext] [SG15] Can we expect that all C++ source files can have the same suffix?
>
>
>
> On 4/13/22 17:10, Nico Josuttis via SG15 wrote:
>
>
>
> I should add that the fact that we need
>
> module;
>
> at the beginning of the global module fragment was only introduced to
>
> let a file identify itself as module file. If we would require
>
> different suffixes, that would not have been necessary.
>
>
>
> But correct me if I am wrong.
>
>
>
> I shall correct you :)
>
>
>
> Here's the history (as I recall, all persons mentioned are real, and
>
> not to be confused with ficticious characters)
>
>
>
> * prior to me doing things with gcc, there was only 'module FOO;' as a
>
> module declaration at-most once within a TU. MSVC (the only compiler
>
> with module smarts at the time), had a flag to tell it 'this is an
>
> interface' vs 'this is an implementation'.
>
>
>
> * I found this unsatisfying, as it meant that there was something
>
> outside the source tokens that told you how to interpret them. In
>
> effect we had two languages.
>
>
>
> * IIRC, Gaby, Jason (Merrill) and I came up with the 'export module
>
> FOO;' vs 'module foo;' distinction. But still this could be anywhere
>
> in the source stream. I was able to implement this functionality to a
>
> working system.
>
>
>
> * Daveed proposed an early signifier of 'hey, this is gonna be a
>
> module', should the actual module declaration not be first. Hence
>
> 'module;' was born. (My understanding was that this was driven by
>
> implementors, as they had difficulty entering a module-like mode not at
>
> start of compilation, and indeed it was a little tricky to do that. I
>
> do not know if this was also a user request.)
>
>
>
> * post p1103, the requirement that everything between 'module;' and the
>
> module decl come from #include came to be.
>
>
>
> Hope that helps.
>
>
>
> I know I've mentioned it more than once, but I find it unsettling,
>
> given there was great opposition to there being a (two way?) mapping
>
> between file names and module names, that there is a move in the
>
> direction of making file names 'significant'. ISTM that the desire for
>
> bob.$REGULARSUFFIX and alice.$MODULESUFFIX is taking us all the way
>
> back to the first objection above about having two languages.
>
>
>
> nathan
>
>
>
>
>
>
>
> Am 13. April 2022 22:58:13 MESZ schrieb Nicolai Josuttis via Ext
>
> <ext_at_[hidden]<mailto:ext_at_[hidden] <mailto:ext_at_[hidden]%3cmailto:ext_at_[hidden]>>>:
>
>
>
> What I teach about modules is compelling. Programmers like and want to use it.
>
> However, they ask how they should organize module files in
>
> practice.
>
>
>
> So far I cannot recommend a specific suffix (and I might never be able to do
>
> that).
>
> However there is one important question that IMO the standard should answer:
>
> *Do we **/need /**different suffixes?*
>
>
>
> I understand that a suffix discussion is only of practical value.
>
> But IMO the standard has to give an answer here (which has nothing to do
>
> with which suffixes are used).
>
>
>
> Let me elaborate that in detail:
>
>
>
> Not having a standard suffix has interesting consequences.
>
> So far we have header files and translation units.
>
> But once we know what a C++ translation unit is, we can just compile them
>
> all with the same compiler options or commands. Because in practice we have
>
> different suffixes for header and source files, we can set-up generic rules
>
> to compile our code.
>
>
>
> This works for any suffix, provided you know the way to tell the compiler
>
> that we have a C++ file here:
>
> (use /Tp with VC++ and -xc++ with gcc and you are done).
>
>
>
> Is this still true with modules?
>
> That is: Can we expect that identifying a file as C++ file is enough to be
>
> able to (pre) compile it as C++ file?
>
>
>
> Current compilers give different answers (AFAIK):
>
>
>
> - *gcc *says the same suffix is possible. There is not special option for
>
> modules.
>
> I can still have my own suffixes and use -xc++ though.
>
>
>
> - *VC++* currently requires different suffixes or different command-line
>
> arguments.
>
> Identifying a file as C++ file is not enough.
>
> For example
>
> - This is not enough: /Tp mymod.cppm
>
> - You need: /interface /Tp mymod.cppm
>
>
>
> I wonder whether the behavior of VC++ is standard conforming.
>
>
>
> I see no place in the C++ standard saying that there has to be different
>
> treatment of C++ source files to make them work.
>
> Or do we require this somewhere?
>
> We do not require different treatment just because we have templates,
>
> namespaces, or exceptions used inside.
>
> Therefore, I would expect that also using modules does not require special
>
> handling.
>
> (This is independent from the question whether different suffixes help to
>
> deal with these files).
>
>
>
> If I am right, VC++ is not standard conforming.
>
>
>
>
>
> In any case it would help a lot to clarify:
>
> Can all C++ source files expect that treating them the same way
>
> works fine?
>
>
>
> If not, we obviously need different suffixes. But then we should clearly say
>
> so (without necessarily saying which suffix it is).
>
>
>
>
>
> I hope this questions brings us a bit forward to be able teach the first
>
> *portable *"hello, modules" example.
>
>
>
> Thanks
>
>
>
> Nico
>
>
>
> --
>
> ------------------------------------------------------------------------
>
> Nicolai M. Josuttis
>
>     https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.josuttis.de%2F&amp;data=05%7C01%7Cgdr%40microsoft.com%7Cbd5d9b59ad484906820b08da1f0cac6f%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856436548406876%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=rGQUFYPVGC6vH5MaGf4q6GG%2BB8fTzeWGtqy%2BSjZ9w30%3D&amp;reserved=0 <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.josuttis.de%2F&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842450971425%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=1NDuuogMV%2FWTKhQZSU3iMntSmrXZLdxoN0c7jLpHKW8%3D&reserved=0><https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.josuttis.de%2F&data=05%7C01%7Cgdr%40microsoft.com%7C1610f887a9444406d22e08da1f12de0a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856463158988825%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=p58c74Uq%2FArsijB%2FZMZFWYQRjVAiDRLXA%2Bc0ARBueXU%3D&reserved=0 <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.josuttis.de%2F&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842450971425%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=1NDuuogMV%2FWTKhQZSU3iMntSmrXZLdxoN0c7jLpHKW8%3D&reserved=0>>
>
> +49 (0)531 / 129 88 86
>
> +49 (0)700 / JOSUTTIS
>
>
>
> Books:
>
>       C++:https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcppstd20.com%2F&amp;data=05%7C01%7Cgdr%40microsoft.com%7Cbd5d9b59ad484906820b08da1f0cac6f%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856436548406876%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=3RK5Al6NSQ9aaLx4mj7IAYuvW2IBRAD292Q5A3%2BlZAk%3D&amp;reserved=0,https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcppstd17.com%2F&amp;data=05%7C01%7Cgdr%40microsoft.com%7Cbd5d9b59ad484906820b08da1f0cac6f%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856436548406876%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=6HM1W8MPFGlu1AeYoBJHI9IeRXS7VmxTw5w8YTn8FD4%3D&amp;reserved=0,https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcppmove.com%2F&amp;data=05%7C01%7Cgdr%40microsoft.com%7Cbd5d9b59ad484906820b08da1f0cac6f%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856436548406876%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=N%2BKcVW0jDyb9rEFMBB1r69HTdjAP%2BJa4STQPn3vs7Z8%3D&amp;reserved=0 <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcppstd20.com%2F&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842450971425%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=cK8lg2%2FUiIAyRnxTgPRDjUTl9HMrlUt1pfgBmh0YCVw%3D&reserved=0>,
>
>
>
> https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcppst
>
> dlib.com%2F&amp;data=05%7C01%7Cgdr%40microsoft.com%7Cbd5d9b59ad4849068
>
> 20b08da1f0cac6f%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856436
>
> 548406876%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIi
>
> LCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=oHQRsZCq6VomT
>
> GLKM9tyotrYPxwh3ZocNgZaBeqgOo4%3D&amp;reserved=0,https://nam06.safelin <https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fnam06.safelin%2F&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451020759%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=OMVS4KTUBuoSL%2FphFvlIP1V2%2ByAXnbciMf%2F%2FBt%2BDpyA%3D&reserved=0>
>
> ks.protection.outlook.com/?url=http%3A%2F%2Ftmplbook.com%2F&amp;data=0
>
> 5%7C01%7Cgdr%40microsoft.com%7Cbd5d9b59ad484906820b08da1f0cac6f%7C72f9
>
> 88bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856436548406876%7CUnknown%7C
>
> TWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVC
>
> I6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=gVVlDFg7ZDl5T%2Bgcbyf5KrwiqLBOEFfLb
>
> SR19DGDMgQ%3D&amp;reserved=0<https://nam06.safelinks.protection.outloo <https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fnam06.safelinks.protection.outloo%2F&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451024289%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=hMy%2FUOCOzeg9vfoWigmXN1q8GHSXWzU61EeO37vNlBs%3D&reserved=0>
>
> k.com/?url=http%3A%2F%2Fcppstdlib.com%2F&data=05%7C01%7Cgdr%40microsof
>
> t.com%7C1610f887a9444406d22e08da1f12de0a%7C72f988bf86f141af91ab2d7cd01
>
> 1db47%7C1%7C0%7C637856463158988825%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4
>
> wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7
>
> C&sdata=yOr6zw%2Fn2ieJeu%2FLClrrZO6kgYphCKzAJuLLIvnnX7A%3D&reserved=0>
>
>
>
> --
>
> Nico Josuttis
>
> (sent from my mobile phone)
>
> ------------------------------------------------------------------------
>
> SG15 mailing list SG15_at_[hidden]<mailto:SG15_at_[hidden] <mailto:SG15_at_[hidden]%3cmailto:SG15_at_[hidden]>>
>
> https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fsg15&amp;data=05%7C01%7Cgdr%40microsoft.com%7Cbd5d9b59ad484906820b08da1f0cac6f%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856436548406876%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=WuvKKYX%2FnkV6rIOADi4dtNc3IUcjURRipoLglLkOHHw%3D&amp;reserved=0 <https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fsg15&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451024289%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=DrGfe52QS4LA2iqzDHBrun2xMpf3SYRBIxDaAvkGwko%3D&reserved=0><https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fsg15&data=05%7C01%7Cgdr%40microsoft.com%7C1610f887a9444406d22e08da1f12de0a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856463158988825%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=S6qXqKiRwadGpynz34rxacJtL8HGBj2CJu6gYxoEl4E%3D&reserved=0 <https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fsg15&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451034240%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=TNzzCapvWYLbWJTxviS3yB%2BQU9IJGkKiOOodG%2FLVpuM%3D&reserved=0>>
>
>
>
>
>
>
>
> --
>
> Nathan Sidwell
>
> ------------------------------------------------------------------------
>
> Ext mailing list Ext_at_[hidden]<mailto:Ext_at_[hidden] <mailto:Ext_at_[hidden]%3cmailto:Ext_at_[hidden]>>
>
> Subscription: https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fext&amp;data=05%7C01%7Cgdr%40microsoft.com%7Cbd5d9b59ad484906820b08da1f0cac6f%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856436548406876%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=FKzU3Gsik%2F2SAyJOOmZfJ%2FWTRZ8jjpc4cXaOotkWrB0%3D&amp;reserved=0 <https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fext&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451034240%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=KtX4hsDOrkJFgJ6mXVAxDKWNPtW2%2FBBPe4cY5xPjN8k%3D&reserved=0><https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fext&data=05%7C01%7Cgdr%40microsoft.com%7C1610f887a9444406d22e08da1f12de0a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856463158988825%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Ki7yx7xed6LLVCfthhpH405JRq5l9wW3kF8EQ07ghEY%3D&reserved=0 <https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fext&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451034240%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=KtX4hsDOrkJFgJ6mXVAxDKWNPtW2%2FBBPe4cY5xPjN8k%3D&reserved=0>>
>
> Link to this post: https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.isocpp.org%2Fext%2F2022%2F04%2F19021.php&amp;data=05%7C01%7Cgdr%40microsoft.com%7Cbd5d9b59ad484906820b08da1f0cac6f%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856436548406876%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;sdata=DjZPo5RuyycaIgn8Yp3q%2BX2kmXv4Oj9lTHkPIsyYk4Q%3D&amp;reserved=0 <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.isocpp.org%2Fext%2F2022%2F04%2F19021.php&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451044194%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=gIw1Z9GkT4Wn6svK11XE4kWw4nWbuABGG1d8%2BdLRkis%3D&reserved=0><https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.isocpp.org%2Fext%2F2022%2F04%2F19021.php&data=05%7C01%7Cgdr%40microsoft.com%7C1610f887a9444406d22e08da1f12de0a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856463158988825%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=EJPBQ8G5MLaW0RBVNLud2RWq5gtXAYsk5tJ%2B%2Fct5YIk%3D&reserved=0 <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.isocpp.org%2Fext%2F2022%2F04%2F19021.php&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451044194%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=gIw1Z9GkT4Wn6svK11XE4kWw4nWbuABGG1d8%2BdLRkis%3D&reserved=0>>
>
> ------------------------------------------------------------------------
>
> Ext mailing list Ext_at_[hidden]<mailto:Ext_at_[hidden] <mailto:Ext_at_[hidden]%3cmailto:Ext_at_[hidden]>>
>
> Subscription: https://lists.isocpp.org/mailman/listinfo.cgi/ext <https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fext&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451054150%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Kqm5fJWpDnOMxr3iz34sNJdE9uRYTrFCezyZeMRkXsg%3D&reserved=0><https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fext&data=05%7C01%7Cgdr%40microsoft.com%7C1610f887a9444406d22e08da1f12de0a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856463158988825%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Ki7yx7xed6LLVCfthhpH405JRq5l9wW3kF8EQ07ghEY%3D&reserved=0 <https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fext&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451054150%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Kqm5fJWpDnOMxr3iz34sNJdE9uRYTrFCezyZeMRkXsg%3D&reserved=0>>
>
> Link to this post: http://lists.isocpp.org/ext/2022/04/19023.php <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.isocpp.org%2Fext%2F2022%2F04%2F19023.php&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451054150%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=OXE0GqL%2BlwGgm8I8Z0jOm5ieWj9o1JRGao43X1I9nOs%3D&reserved=0><https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.isocpp.org%2Fext%2F2022%2F04%2F19023.php&data=05%7C01%7Cgdr%40microsoft.com%7C1610f887a9444406d22e08da1f12de0a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637856463158988825%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Qu%2B5DWTdYzn3j6KAhjyM46MwRmpzO3J3Zdd9ljJm5SQ%3D&reserved=0 <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.isocpp.org%2Fext%2F2022%2F04%2F19023.php&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451064105%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=If29OsJkj6dodi7X6Aty67G4eCO3UXSsi2ZhSjT6TWg%3D&reserved=0>>
>
> --
>
> Nico Josuttis
>
> (sent from my mobile phone)
>
>
>
> --
>
> Nico Josuttis
>
> (sent from my mobile phone)
>
> ------------------------------------------------------------------------
>
> Ext mailing list
>
> Ext_at_[hidden]
>
> Subscription: https://lists.isocpp.org/mailman/listinfo.cgi/ext <https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fext&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451064105%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=2lmwOB4ipgmNoXu2EtWP3dUBJnfYddALpOXIVm7X1hQ%3D&reserved=0>
>
> Link to this post: http://lists.isocpp.org/ext/2022/04/19028.php <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.isocpp.org%2Fext%2F2022%2F04%2F19028.php&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451074064%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Wuvojyp0LGHOZ9DTljbK2AKH2sECaMJ4xtz7x8U%2BrgA%3D&reserved=0>
>
> ------------------------------------------------------------------------
>
> Ext mailing list
>
> Ext_at_[hidden]
>
> Subscription: https://lists.isocpp.org/mailman/listinfo.cgi/ext <https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.isocpp.org%2Fmailman%2Flistinfo.cgi%2Fext&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451074064%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=2hqsUQqjAVsLkpoiUm0voS%2BsY7PAgi8PTWTja2EXvfM%3D&reserved=0>
>
> Link to this post: http://lists.isocpp.org/ext/2022/04/19029.php <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Flists.isocpp.org%2Fext%2F2022%2F04%2F19029.php&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451074064%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=%2BhPbjVY0bxpo1e86yqo4b%2BB0CG3H8P3Tyxh9yj0ZK5U%3D&reserved=0>
>
> --
> Nico Josuttis
> (sent from my mobile phone)
>
> --
> ---
> Nicolai M. Josuttis
> www.josuttis.de <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.josuttis.de%2F&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451084019%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=J8mtBmq0QY7bpq%2FBUXd6v%2B5eE5ilj8zaAQjdNaNvHO8%3D&reserved=0>
> +49 (0)531 / 129 88 86
> +49 (0)700 / JOSUTTIS
>
> Books:
> C++: http://cppstd20.com <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcppstd20.com%2F&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451084019%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=Eqg185snWzded0AI%2BE5unK9XkprmgyDs7UwRVT0RIQw%3D&reserved=0>, http://cppstd17.com <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcppstd17.com%2F&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451093975%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=X4mAV0NutCd7r3iFECxQS1hLSDZzYt%2BvPqec7E2WiHk%3D&reserved=0>, http://cppmove.com <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcppmove.com%2F&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451093975%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=SzrcROHy4OfW0EAqfeSzQelj%2FJzigYMjAVMeK5R4en0%3D&reserved=0>,
> http://cppstdlib.com <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Fcppstdlib.com%2F&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451093975%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=%2F8AEN2Kd7LTEePvKgUOztqv3fXWrBB5Jn6x88qX3yEI%3D&reserved=0>, http://tmplbook.com <https://nam06.safelinks.protection.outlook.com/?url=http%3A%2F%2Ftmplbook.com%2F&data=05%7C01%7Cgdr%40microsoft.com%7C47a42970c1cd4f8d1ac808da205402cf%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637857842451103931%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=15jUsFiELxKTFyvuIDGGoAEyvobniPHdlnxVi9avqCM%3D&reserved=0>
>

-- 
--- 
Nicolai M. Josuttis
www.josuttis.de
+49 (0)531 / 129 88 86
+49 (0)700 / JOSUTTIS
Books:
 C++: http://cppstd20.com, http://cppstd17.com, http://cppmove.com,
      http://cppstdlib.com, http://tmplbook.com

Received on 2022-04-19 12:03:51