Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

The best way to accelerate a Macintoy is at 9.8 meters per second per second.


devel / comp.lang.c++ / What's decltype doing here?

SubjectAuthor
* What's decltype doing here?Ben Bacarisse
+* Re: What's decltype doing here?Bo Persson
|`* Re: What's decltype doing here?Ben Bacarisse
| `- Re: What's decltype doing here?Bonita Montero
`* Re: What's decltype doing here?Bonita Montero
 `* Re: What's decltype doing here?David Brown
  +* Re: What's decltype doing here?Bonita Montero
  |+* Re: What's decltype doing here?Scott Lurndal
  ||`- Re: What's decltype doing here?Bonita Montero
  |`* Re: What's decltype doing here?David Brown
  | `* Re: What's decltype doing here?Bonita Montero
  |  `* Re: What's decltype doing here?Chris M. Thomasson
  |   `* Re: What's decltype doing here?Bonita Montero
  |    `- Re: What's decltype doing here?Chris M. Thomasson
  `* Re: What's decltype doing here?David Brown
   +- Re: What's decltype doing here?Bonita Montero
   `* Re: What's decltype doing here?Chris M. Thomasson
    `* Re: What's decltype doing here?Bonita Montero
     `- Re: What's decltype doing here?Chris M. Thomasson

1
What's decltype doing here?

<878r7950vy.fsf@bsb.me.uk>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2481&group=comp.lang.c%2B%2B#2481

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!news.hispagatos.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ben.usenet@bsb.me.uk (Ben Bacarisse)
Newsgroups: comp.lang.c++
Subject: What's decltype doing here?
Date: Tue, 07 Nov 2023 10:11:13 +0000
Organization: A noiseless patient Spider
Lines: 43
Message-ID: <878r7950vy.fsf@bsb.me.uk>
MIME-Version: 1.0
Content-Type: text/plain
Injection-Info: dont-email.me; posting-host="23ad4efdd42c9af5ecb199cc9f2cf504";
logging-data="1019839"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+sH3m21/NAcL3WA6Yfv/4t/FDu9toJtJk="
User-Agent: Gnus/5.13 (Gnus v5.13)
Cancel-Lock: sha1:wxws3G+/CTYkP9HJBoJxvsv3C8Y=
sha1:SY9VSmb5rZYRSYreptyJLsUx0og=
X-BSB-Auth: 1.08e5fc9661dcdcdaf292.20231107101113GMT.878r7950vy.fsf@bsb.me.uk
 by: Ben Bacarisse - Tue, 7 Nov 2023 10:11 UTC

This question got a bit lost in another thread, so I am re-posting it on
its own. What is decltype doing in the following short program?

#include <iostream>
#include <memory>

int main()
{
int x = 42;
std::unique_ptr<int, decltype([](int *p) {
std::cout << "delete (" << *p << ")\n";
})> upi(&x);
}

I expected decltype to supply just a type in the template and for a
second argument to be required when constructing upi, but no. The
program compiles (gcc and clang) and prints "delete (42)".

The equivalent using a named function works as I expect:

#include <iostream>
#include <memory>

void deleter(int *p) { std::cout << "deleter (" << *p << ")\n"; };

int main()
{
int x = 42;
std::unique_ptr<int, decltype(&deleter)> upi(&x, deleter);
}

In this case it's an error to omit the second argument to the
constructor. (I used decltype just to make the comparison clear but of
course one could simply write the type (void (*)(int *)) in the template
instead.)

I am pretty sure that the answer is in some way related to the fact that
C++ lambdas have unique types, but it's not clear to me what's really
going on. Explanations welcome. Pointers to explanatory text in the
standard even more so.

--
Ben.

Re: What's decltype doing here?

<kqukdqF1fdjU1@mid.individual.net>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2482&group=comp.lang.c%2B%2B#2482

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!news.swapon.de!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail
From: bo@bo-persson.se (Bo Persson)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Tue, 7 Nov 2023 12:12:58 +0100
Lines: 52
Message-ID: <kqukdqF1fdjU1@mid.individual.net>
References: <878r7950vy.fsf@bsb.me.uk>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
X-Trace: individual.net umPVG0pwSQzXne11+md1TgXZPpnKcVyIJOcH0kYyz5mGlH2F61
Cancel-Lock: sha1:3k2T45WRRbk1uBsmwJy8+PtoeiU= sha256:GDp44Eu/GD/OySfge8pYQCNc/tGMtHM0+rg6uAn/TTs=
User-Agent: Mozilla Thunderbird
Content-Language: sv
In-Reply-To: <878r7950vy.fsf@bsb.me.uk>
 by: Bo Persson - Tue, 7 Nov 2023 11:12 UTC

On 2023-11-07 at 11:11, Ben Bacarisse wrote:
> This question got a bit lost in another thread, so I am re-posting it on
> its own. What is decltype doing in the following short program?
>
> #include <iostream>
> #include <memory>
>
> int main()
> {
> int x = 42;
> std::unique_ptr<int, decltype([](int *p) {
> std::cout << "delete (" << *p << ")\n";
> })> upi(&x);
> }
>
> I expected decltype to supply just a type in the template and for a
> second argument to be required when constructing upi, but no. The
> program compiles (gcc and clang) and prints "delete (42)".
>
> The equivalent using a named function works as I expect:
>
> #include <iostream>
> #include <memory>
>
> void deleter(int *p) { std::cout << "deleter (" << *p << ")\n"; };
>
> int main()
> {
> int x = 42;
> std::unique_ptr<int, decltype(&deleter)> upi(&x, deleter);
> }
>
> In this case it's an error to omit the second argument to the
> constructor. (I used decltype just to make the comparison clear but of
> course one could simply write the type (void (*)(int *)) in the template
> instead.)
>
> I am pretty sure that the answer is in some way related to the fact that
> C++ lambdas have unique types, but it's not clear to me what's really
> going on. Explanations welcome. Pointers to explanatory text in the
> standard even more so.
>

You *have* the explanation right there. :-)

The lambda has a unique type and can be default constructed, so that is
what happens.

The function pointer needs a *real* function to point to, so requires a
second parameter.

Re: What's decltype doing here?

<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2483&group=comp.lang.c%2B%2B#2483

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!raubtier-asyl.eternal-september.org!.POSTED!not-for-mail
From: Bonita.Montero@gmail.com (Bonita Montero)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Tue, 7 Nov 2023 13:23:32 +0100
Organization: A noiseless patient Spider
Lines: 58
Message-ID: <0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
References: <878r7950vy.fsf@bsb.me.uk>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: raubtier-asyl.eternal-september.org; posting-host="cc9a5f3f3818b7d98cf21692c5384b4b";
logging-data="1060542"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+71XHQ99eJoveN2M3PviREZtGxK5axsLs="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:MYd5mm8E4iLK3nFtwh31aUhqIJk=
In-Reply-To: <878r7950vy.fsf@bsb.me.uk>
Content-Language: de-DE
 by: Bonita Montero - Tue, 7 Nov 2023 12:23 UTC

The lambda *has* a calling operator, but isn't a calling operator.
The lambda itself is the []-object in this case. If you don't have
any captures you can instantiate the lambda withoug copying or mov-
ing. So if I handle the lambda's type implicitly to the constructor
of unique_ptr with a default-parameter it's default-constructed.
Deducing the lambda's type with decltype is possible only with
C++20 as C++20 allows using a lambda in an unevaluated context;
default-constructing a non-capturing lambda without copying is
AFAIK also C++20.
I can recommend the E-Book "C++ Lambda Story" from Leanpub for that.
It's in this C++ book collection:
https://mega.nz/file/es1gBajQ#nlMLfzK5d3MWoPU8K0B7gf4JyZoTFgWt1hJMJFtSP0I
Password for the archive is "Usenet".

Am 07.11.2023 um 11:11 schrieb Ben Bacarisse:
> This question got a bit lost in another thread, so I am re-posting it on
> its own. What is decltype doing in the following short program?
>
> #include <iostream>
> #include <memory>
>
> int main()
> {
> int x = 42;
> std::unique_ptr<int, decltype([](int *p) {
> std::cout << "delete (" << *p << ")\n";
> })> upi(&x);
> }
>
> I expected decltype to supply just a type in the template and for a
> second argument to be required when constructing upi, but no. The
> program compiles (gcc and clang) and prints "delete (42)".
>
> The equivalent using a named function works as I expect:
>
> #include <iostream>
> #include <memory>
>
> void deleter(int *p) { std::cout << "deleter (" << *p << ")\n"; };
>
> int main()
> {
> int x = 42;
> std::unique_ptr<int, decltype(&deleter)> upi(&x, deleter);
> }
>
> In this case it's an error to omit the second argument to the
> constructor. (I used decltype just to make the comparison clear but of
> course one could simply write the type (void (*)(int *)) in the template
> instead.)
>
> I am pretty sure that the answer is in some way related to the fact that
> C++ lambdas have unique types, but it's not clear to me what's really
> going on. Explanations welcome. Pointers to explanatory text in the
> standard even more so.
>

Re: What's decltype doing here?

<uidi4g$11q5c$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2484&group=comp.lang.c%2B%2B#2484

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: david.brown@hesbynett.no (David Brown)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Tue, 7 Nov 2023 15:38:07 +0100
Organization: A noiseless patient Spider
Lines: 16
Message-ID: <uidi4g$11q5c$1@dont-email.me>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Tue, 7 Nov 2023 14:38:08 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="04a2a513b6d0941b02890410f0b82c31";
logging-data="1108140"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18Ycd26wfum/0vurc9UcG66PPKiin2sdaU="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
Thunderbird/102.11.0
Cancel-Lock: sha1:z9/NwZQRGmsQqntnADOvwUj/8zw=
In-Reply-To: <0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
Content-Language: en-GB
 by: David Brown - Tue, 7 Nov 2023 14:38 UTC

On 07/11/2023 13:23, Bonita Montero wrote:
> I can recommend the E-Book "C++ Lambda Story" from Leanpub for that.
> It's in this C++ book collection:
> <--->
> Password for the archive is "<--->".

I have reported you to the author for encouraging copyright
infringement. It is disgraceful that you would post such links in
public. You claim to be a professional developer, yet encourage
stealing a $15 book from a guy who publishes an enormous amount of free
information on his blog.

It is now up to the author to decide where to take this. Hopefully at a
minimum the mega.nz file will be removed, and the account deleted.

Re: What's decltype doing here?

<87wmut386d.fsf@bsb.me.uk>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2485&group=comp.lang.c%2B%2B#2485

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ben.usenet@bsb.me.uk (Ben Bacarisse)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Tue, 07 Nov 2023 15:16:42 +0000
Organization: A noiseless patient Spider
Lines: 55
Message-ID: <87wmut386d.fsf@bsb.me.uk>
References: <878r7950vy.fsf@bsb.me.uk> <kqukdqF1fdjU1@mid.individual.net>
MIME-Version: 1.0
Content-Type: text/plain
Injection-Info: dont-email.me; posting-host="23ad4efdd42c9af5ecb199cc9f2cf504";
logging-data="1123576"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19y2XmRw4Q6sRpWTYaaWG4+QvysiYSDiMM="
User-Agent: Gnus/5.13 (Gnus v5.13)
Cancel-Lock: sha1:NUBZ84dkPGx0+Ti4ZfY3IMzygdQ=
sha1:W9OAAdDVp/BwP3htDunGGEYsjWs=
X-BSB-Auth: 1.b329c4014615ea4b18a3.20231107151642GMT.87wmut386d.fsf@bsb.me.uk
 by: Ben Bacarisse - Tue, 7 Nov 2023 15:16 UTC

Bo Persson <bo@bo-persson.se> writes:

> On 2023-11-07 at 11:11, Ben Bacarisse wrote:
>> This question got a bit lost in another thread, so I am re-posting it on
>> its own. What is decltype doing in the following short program?
>> #include <iostream>
>> #include <memory>
>> int main()
>> {
>> int x = 42;
>> std::unique_ptr<int, decltype([](int *p) {
>> std::cout << "delete (" << *p << ")\n";
>> })> upi(&x);
>> }
>> I expected decltype to supply just a type in the template and for a
>> second argument to be required when constructing upi, but no. The
>> program compiles (gcc and clang) and prints "delete (42)".
>> The equivalent using a named function works as I expect:
>> #include <iostream>
>> #include <memory>
>> void deleter(int *p) { std::cout << "deleter (" << *p << ")\n"; };
>> int main()
>> {
>> int x = 42;
>> std::unique_ptr<int, decltype(&deleter)> upi(&x, deleter);
>> }
>> In this case it's an error to omit the second argument to the
>> constructor. (I used decltype just to make the comparison clear but of
>> course one could simply write the type (void (*)(int *)) in the template
>> instead.)
>> I am pretty sure that the answer is in some way related to the fact that
>> C++ lambdas have unique types, but it's not clear to me what's really
>> going on. Explanations welcome. Pointers to explanatory text in the
>> standard even more so.
>
> You *have* the explanation right there. :-)
>
> The lambda has a unique type and can be default constructed, so that is
> what happens.

Ah. OK. It seems a little mysterious, but it's obvious when you see
it. Here's a more direct example:

#include <iostream>

int main()
{
decltype([](int i){std::cout << "i=" << i << "\n";}) f;
f(42);
}

Thank you.

--
Ben.

Re: What's decltype doing here?

<uidko0$12aqc$1@raubtier-asyl.eternal-september.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2486&group=comp.lang.c%2B%2B#2486

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!paganini.bofh.team!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!raubtier-asyl.eternal-september.org!.POSTED!not-for-mail
From: Bonita.Montero@gmail.com (Bonita Montero)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Tue, 7 Nov 2023 16:22:40 +0100
Organization: A noiseless patient Spider
Lines: 15
Message-ID: <uidko0$12aqc$1@raubtier-asyl.eternal-september.org>
References: <878r7950vy.fsf@bsb.me.uk> <kqukdqF1fdjU1@mid.individual.net>
<87wmut386d.fsf@bsb.me.uk>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Tue, 7 Nov 2023 15:22:40 -0000 (UTC)
Injection-Info: raubtier-asyl.eternal-september.org; posting-host="cc9a5f3f3818b7d98cf21692c5384b4b";
logging-data="1125196"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19Pk+x5+Rs0Ndew1Vw6T3JKy7H0I+5PHCk="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:Uy00iyOow3rV7LoqqZidwfk4gIs=
Content-Language: de-DE
In-Reply-To: <87wmut386d.fsf@bsb.me.uk>
 by: Bonita Montero - Tue, 7 Nov 2023 15:22 UTC

Am 07.11.2023 um 16:16 schrieb Ben Bacarisse:

> Ah. OK. It seems a little mysterious, but it's obvious when you see
> it. Here's a more direct example:
>
> #include <iostream>
>
> int main()
> {
> decltype([](int i){std::cout << "i=" << i << "\n";}) f;
> f(42);
> }

Put a + before the [] and you have unefined behaviour. ;-)

Re: What's decltype doing here?

<uidlm9$12g63$1@raubtier-asyl.eternal-september.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2487&group=comp.lang.c%2B%2B#2487

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!raubtier-asyl.eternal-september.org!.POSTED!not-for-mail
From: Bonita.Montero@gmail.com (Bonita Montero)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Tue, 7 Nov 2023 16:38:50 +0100
Organization: A noiseless patient Spider
Lines: 15
Message-ID: <uidlm9$12g63$1@raubtier-asyl.eternal-september.org>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 7 Nov 2023 15:38:49 -0000 (UTC)
Injection-Info: raubtier-asyl.eternal-september.org; posting-host="cc9a5f3f3818b7d98cf21692c5384b4b";
logging-data="1130691"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+D5vGbsBuCeRfwPaJ12xHPmBA1RA2hPyQ="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:y/OnaSoKbnHNyOCseCgmLXqDSkk=
In-Reply-To: <uidi4g$11q5c$1@dont-email.me>
Content-Language: de-DE
 by: Bonita Montero - Tue, 7 Nov 2023 15:38 UTC

Am 07.11.2023 um 15:38 schrieb David Brown:

> I have reported you to the author for encouraging copyright
> infringement.  It is disgraceful that you would post such links in
> public.  You claim to be a professional developer, yet encourage
> stealing a $15 book from a guy who publishes an enormous amount of free
> information on his blog.
> It is now up to the author to decide where to take this.  Hopefully at a
> minimum the mega.nz file will be removed, and the account deleted.

It's like with muscians; those people make their money with concerts
and not with sold MP3s and CDs. And people writing these books earn
their money with courses. In the collection I've shown there are
several books from Rainer Grimm; his courses are about 1.500$ a day.

Re: What's decltype doing here?

<Det2N.217705$0UVe.113634@fx17.iad>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2488&group=comp.lang.c%2B%2B#2488

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!rocksolid2!news.neodome.net!weretis.net!feeder8.news.weretis.net!3.eu.feeder.erje.net!1.us.feeder.erje.net!feeder.erje.net!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx17.iad.POSTED!not-for-mail
X-newsreader: xrn 9.03-beta-14-64bit
Sender: scott@dragon.sl.home (Scott Lurndal)
From: scott@slp53.sl.home (Scott Lurndal)
Reply-To: slp53@pacbell.net
Subject: Re: What's decltype doing here?
Newsgroups: comp.lang.c++
References: <878r7950vy.fsf@bsb.me.uk> <0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com> <uidi4g$11q5c$1@dont-email.me> <uidlm9$12g63$1@raubtier-asyl.eternal-september.org>
Lines: 21
Message-ID: <Det2N.217705$0UVe.113634@fx17.iad>
X-Complaints-To: abuse@usenetserver.com
NNTP-Posting-Date: Tue, 07 Nov 2023 16:04:51 UTC
Organization: UsenetServer - www.usenetserver.com
Date: Tue, 07 Nov 2023 16:04:51 GMT
X-Received-Bytes: 1584
 by: Scott Lurndal - Tue, 7 Nov 2023 16:04 UTC

Bonita Montero <Bonita.Montero@gmail.com> writes:
>Am 07.11.2023 um 15:38 schrieb David Brown:
>
>> I have reported you to the author for encouraging copyright
>> infringement.  It is disgraceful that you would post such links in
>> public.  You claim to be a professional developer, yet encourage
>> stealing a $15 book from a guy who publishes an enormous amount of free
>> information on his blog.
>> It is now up to the author to decide where to take this.  Hopefully at a
>> minimum the mega.nz file will be removed, and the account deleted.
>
>It's like with muscians; those people make their money with concerts
>and not with sold MP3s and CDs.

You are incorrect with respect to musicians.

> And people writing these books earn their money with courses.

You are incorrect with respect to authors.

Real people pay for what they get, they don't steal it.

Re: What's decltype doing here?

<uidnt1$12vup$1@raubtier-asyl.eternal-september.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2489&group=comp.lang.c%2B%2B#2489

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!raubtier-asyl.eternal-september.org!.POSTED!not-for-mail
From: Bonita.Montero@gmail.com (Bonita Montero)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Tue, 7 Nov 2023 17:16:33 +0100
Organization: A noiseless patient Spider
Lines: 26
Message-ID: <uidnt1$12vup$1@raubtier-asyl.eternal-september.org>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me>
<uidlm9$12g63$1@raubtier-asyl.eternal-september.org>
<Det2N.217705$0UVe.113634@fx17.iad>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 7 Nov 2023 16:16:33 -0000 (UTC)
Injection-Info: raubtier-asyl.eternal-september.org; posting-host="cc9a5f3f3818b7d98cf21692c5384b4b";
logging-data="1146841"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18N/6epZ91UM8EESQbpoBHwMpBS0aL+jgg="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:FyXvpLgrGkqhDBqtr6XF8vltNu4=
In-Reply-To: <Det2N.217705$0UVe.113634@fx17.iad>
Content-Language: de-DE
 by: Bonita Montero - Tue, 7 Nov 2023 16:16 UTC

Am 07.11.2023 um 17:04 schrieb Scott Lurndal:
> Bonita Montero <Bonita.Montero@gmail.com> writes:
>> Am 07.11.2023 um 15:38 schrieb David Brown:
>>
>>> I have reported you to the author for encouraging copyright
>>> infringement.  It is disgraceful that you would post such links in
>>> public.  You claim to be a professional developer, yet encourage
>>> stealing a $15 book from a guy who publishes an enormous amount of free
>>> information on his blog.
>>> It is now up to the author to decide where to take this.  Hopefully at a
>>> minimum the mega.nz file will be removed, and the account deleted.
>>
>> It's like with muscians; those people make their money with concerts
>> and not with sold MP3s and CDs.
>
> You are incorrect with respect to musicians.

Absolutely not.

>> And people writing these books earn their money with courses.

> You are incorrect with respect to authors.

At least not for those which actually teaching in courses.

Re: What's decltype doing here?

<uidpio$13asg$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2490&group=comp.lang.c%2B%2B#2490

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: david.brown@hesbynett.no (David Brown)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Tue, 7 Nov 2023 17:45:11 +0100
Organization: A noiseless patient Spider
Lines: 32
Message-ID: <uidpio$13asg$1@dont-email.me>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me>
<uidlm9$12g63$1@raubtier-asyl.eternal-september.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 7 Nov 2023 16:45:12 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="04a2a513b6d0941b02890410f0b82c31";
logging-data="1158032"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18/kVzAue0GZhswbuxa42AVEbA1yb08BHc="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
Thunderbird/102.11.0
Cancel-Lock: sha1:LB1ZC94xvRuaYP5vIAer1wKNPi0=
Content-Language: en-GB
In-Reply-To: <uidlm9$12g63$1@raubtier-asyl.eternal-september.org>
 by: David Brown - Tue, 7 Nov 2023 16:45 UTC

On 07/11/2023 16:38, Bonita Montero wrote:
> Am 07.11.2023 um 15:38 schrieb David Brown:
>
>> I have reported you to the author for encouraging copyright
>> infringement.  It is disgraceful that you would post such links in
>> public.  You claim to be a professional developer, yet encourage
>> stealing a $15 book from a guy who publishes an enormous amount of
>> free information on his blog.
>> It is now up to the author to decide where to take this.  Hopefully at
>> a minimum the mega.nz file will be removed, and the account deleted.
>
> It's like with muscians; those people make their money with concerts
> and not with sold MP3s and CDs. And people writing these books earn
> their money with courses. In the collection I've shown there are
> several books from Rainer Grimm; his courses are about 1.500$ a day.
>

Have you asked the author of the book - not Rainer Grimm - if he is
happy for people to make unlicensed copies of his book, and encourage
others to download such copies? I'd be very surprised to hear that -
just as none of the professional musicians I know are at all happy to
have people make unlicensed copies of their music.

Have you the faintest idea how hard it is for people to make a living by
giving courses? Or concerts? Baring a few of the most famous
performers, musicians rarely much profit from concerts.

And regardless of how much you, in your complete ignorance, think people
make from books, courses, or anything else - it is not /your/ place to
decide that this author should not be getting paid fairly for his book.

Re: What's decltype doing here?

<uidpqn$13cal$1@raubtier-asyl.eternal-september.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2491&group=comp.lang.c%2B%2B#2491

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!raubtier-asyl.eternal-september.org!.POSTED!not-for-mail
From: Bonita.Montero@gmail.com (Bonita Montero)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Tue, 7 Nov 2023 17:49:27 +0100
Organization: A noiseless patient Spider
Lines: 8
Message-ID: <uidpqn$13cal$1@raubtier-asyl.eternal-september.org>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me>
<uidlm9$12g63$1@raubtier-asyl.eternal-september.org>
<uidpio$13asg$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 7 Nov 2023 16:49:27 -0000 (UTC)
Injection-Info: raubtier-asyl.eternal-september.org; posting-host="cc9a5f3f3818b7d98cf21692c5384b4b";
logging-data="1159509"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+xUubpMnG2inJTCbP9dEORAtggnzMAE5c="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:4wKrqwaNuztPcQho+2uSN6HtFwc=
In-Reply-To: <uidpio$13asg$1@dont-email.me>
Content-Language: de-DE
 by: Bonita Montero - Tue, 7 Nov 2023 16:49 UTC

Am 07.11.2023 um 17:45 schrieb David Brown:

> Have you asked the author of the book - not Rainer Grimm - if he is
> happy for people to make unlicensed copies of his book, and encourage
> others to download such copies?  ...

He's for sure not happy, but not really hurt if he gives courses
at this price.

Re: What's decltype doing here?

<uie4v6$15j47$3@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2494&group=comp.lang.c%2B%2B#2494

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!news.hispagatos.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m.thomasson.1@gmail.com (Chris M. Thomasson)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Tue, 7 Nov 2023 11:59:35 -0800
Organization: A noiseless patient Spider
Lines: 13
Message-ID: <uie4v6$15j47$3@dont-email.me>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me>
<uidlm9$12g63$1@raubtier-asyl.eternal-september.org>
<uidpio$13asg$1@dont-email.me>
<uidpqn$13cal$1@raubtier-asyl.eternal-september.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 7 Nov 2023 19:59:34 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="d7534cbeaf8beb68b02e790c34f99dc0";
logging-data="1232007"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18Ugxpsb6UKpHjGbA3s/PEObGsnyWDOKp0="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:chBZ3oFKNXPenApYWWAkGD11Q6I=
In-Reply-To: <uidpqn$13cal$1@raubtier-asyl.eternal-september.org>
Content-Language: en-US
 by: Chris M. Thomasson - Tue, 7 Nov 2023 19:59 UTC

On 11/7/2023 8:49 AM, Bonita Montero wrote:
> Am 07.11.2023 um 17:45 schrieb David Brown:
>
>> Have you asked the author of the book - not Rainer Grimm - if he is
>> happy for people to make unlicensed copies of his book, and encourage
>> others to download such copies?  ...
>
> He's for sure not happy, but not really hurt if he gives courses
> at this price.

Wow! You are a thief as well... Humm... I know you don't know very much
about synchronization primitives and multi-threading in general, but a
thief to boot? wow.

Re: What's decltype doing here?

<uif9ph$1foq6$1@raubtier-asyl.eternal-september.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2495&group=comp.lang.c%2B%2B#2495

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!raubtier-asyl.eternal-september.org!.POSTED!not-for-mail
From: Bonita.Montero@gmail.com (Bonita Montero)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Wed, 8 Nov 2023 07:28:01 +0100
Organization: A noiseless patient Spider
Lines: 8
Message-ID: <uif9ph$1foq6$1@raubtier-asyl.eternal-september.org>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me>
<uidlm9$12g63$1@raubtier-asyl.eternal-september.org>
<uidpio$13asg$1@dont-email.me>
<uidpqn$13cal$1@raubtier-asyl.eternal-september.org>
<uie4v6$15j47$3@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 8 Nov 2023 06:28:01 -0000 (UTC)
Injection-Info: raubtier-asyl.eternal-september.org; posting-host="8087a75e9a50340a40d90ff08d823f7b";
logging-data="1565510"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/euRpXL4gVFCifahaph9zysoHvpv8pXXI="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:8Tbd+i63z/yWGXd7qxx9BTqWMSI=
Content-Language: de-DE
In-Reply-To: <uie4v6$15j47$3@dont-email.me>
 by: Bonita Montero - Wed, 8 Nov 2023 06:28 UTC

Am 07.11.2023 um 20:59 schrieb Chris M. Thomasson:

> Wow! You are a thief as well... Humm... I know you don't know very much
> about synchronization primitives and multi-threading in general, ...

You're a child.

Re: What's decltype doing here?

<uifhs0$1h42v$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2496&group=comp.lang.c%2B%2B#2496

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: david.brown@hesbynett.no (David Brown)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Wed, 8 Nov 2023 09:45:52 +0100
Organization: A noiseless patient Spider
Lines: 23
Message-ID: <uifhs0$1h42v$1@dont-email.me>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Wed, 8 Nov 2023 08:45:52 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="47b5e460951f0f7d3edf50bb79b0543f";
logging-data="1609823"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+Fw2tOZPByOmYaVyLqsXA3dlB8fL8Budc="
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101
Thunderbird/102.11.0
Cancel-Lock: sha1:d8yZ2pytT9zMeMqjekdzeE5AQgo=
In-Reply-To: <uidi4g$11q5c$1@dont-email.me>
Content-Language: en-GB
 by: David Brown - Wed, 8 Nov 2023 08:45 UTC

On 07/11/2023 15:38, David Brown wrote:
> On 07/11/2023 13:23, Bonita Montero wrote:
>> I can recommend the E-Book "C++ Lambda Story" from Leanpub for that.
>> It's in this C++ book collection:
>> <--->
>> Password for the archive is "<--->".
>
> I have reported you to the author for encouraging copyright
> infringement.  It is disgraceful that you would post such links in
> public.  You claim to be a professional developer, yet encourage
> stealing a $15 book from a guy who publishes an enormous amount of free
> information on his blog.
>
> It is now up to the author to decide where to take this.  Hopefully at a
> minimum the mega.nz file will be removed, and the account deleted.
>

For those that are interested, here is the real book:

<https://leanpub.com/cpplambda>

Re: What's decltype doing here?

<uifip5$1ha8b$1@raubtier-asyl.eternal-september.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2497&group=comp.lang.c%2B%2B#2497

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!raubtier-asyl.eternal-september.org!.POSTED!not-for-mail
From: Bonita.Montero@gmail.com (Bonita Montero)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Wed, 8 Nov 2023 10:01:25 +0100
Organization: A noiseless patient Spider
Lines: 25
Message-ID: <uifip5$1ha8b$1@raubtier-asyl.eternal-september.org>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me> <uifhs0$1h42v$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Wed, 8 Nov 2023 09:01:25 -0000 (UTC)
Injection-Info: raubtier-asyl.eternal-september.org; posting-host="8087a75e9a50340a40d90ff08d823f7b";
logging-data="1616139"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/6bF5tUwJV3M6KZXui8d4GNT4mXVCQ+9Q="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:/CBOcEU0gF7qFbMa8tmsd2ZGNLI=
Content-Language: de-DE
In-Reply-To: <uifhs0$1h42v$1@dont-email.me>
 by: Bonita Montero - Wed, 8 Nov 2023 09:01 UTC

Am 08.11.2023 um 09:45 schrieb David Brown:
> On 07/11/2023 15:38, David Brown wrote:
>> On 07/11/2023 13:23, Bonita Montero wrote:
>>> I can recommend the E-Book "C++ Lambda Story" from Leanpub for that.
>>> It's in this C++ book collection:
>>> <--->
>>> Password for the archive is "<--->".
>>
>> I have reported you to the author for encouraging copyright
>> infringement.  It is disgraceful that you would post such links in
>> public.  You claim to be a professional developer, yet encourage
>> stealing a $15 book from a guy who publishes an enormous amount of
>> free information on his blog.
>>
>> It is now up to the author to decide where to take this.  Hopefully at
>> a minimum the mega.nz file will be removed, and the account deleted.
>>
>
> For those that are interested, here is the real book:
>
> <https://leanpub.com/cpplambda>

You can also find it on annas-archive.org.

Re: What's decltype doing here?

<uigvvp$1q2i4$3@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2500&group=comp.lang.c%2B%2B#2500

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!rocksolid2!news.neodome.net!news.mixmin.net!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m.thomasson.1@gmail.com (Chris M. Thomasson)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Wed, 8 Nov 2023 13:52:57 -0800
Organization: A noiseless patient Spider
Lines: 17
Message-ID: <uigvvp$1q2i4$3@dont-email.me>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me>
<uidlm9$12g63$1@raubtier-asyl.eternal-september.org>
<uidpio$13asg$1@dont-email.me>
<uidpqn$13cal$1@raubtier-asyl.eternal-september.org>
<uie4v6$15j47$3@dont-email.me>
<uif9ph$1foq6$1@raubtier-asyl.eternal-september.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 8 Nov 2023 21:52:58 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="19f344dc7af9d1b20308a5f94e05a2cd";
logging-data="1903172"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18/2m4XGf/AOH703GAZaRsW1wgltQEUPLk="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:wrkXnCGmXs+OGJwjcHrxcY4Z1Cw=
Content-Language: en-US
In-Reply-To: <uif9ph$1foq6$1@raubtier-asyl.eternal-september.org>
 by: Chris M. Thomasson - Wed, 8 Nov 2023 21:52 UTC

On 11/7/2023 10:28 PM, Bonita Montero wrote:
> Am 07.11.2023 um 20:59 schrieb Chris M. Thomasson:
>
>> Wow! You are a thief as well... Humm... I know you don't know very
>> much about synchronization primitives and multi-threading in general, ...
>
> You're a child.
>
>

Humm... Apparently you are an adult that steals! Wow. Did you happen to
see all of those parents who stole candy from the front porch of
somebody who left out a lot of candy? Wow. Those lowlife scum bags:

https://youtu.be/AFjx1xnGxD8

God damn assholes!

Re: What's decltype doing here?

<uih037$1q2i4$4@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2508&group=comp.lang.c%2B%2B#2508

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!rocksolid2!news.neodome.net!news.mixmin.net!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m.thomasson.1@gmail.com (Chris M. Thomasson)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Wed, 8 Nov 2023 13:54:47 -0800
Organization: A noiseless patient Spider
Lines: 26
Message-ID: <uih037$1q2i4$4@dont-email.me>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me> <uifhs0$1h42v$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Wed, 8 Nov 2023 21:54:47 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="19f344dc7af9d1b20308a5f94e05a2cd";
logging-data="1903172"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/qm7opB36/mTlabS42kUwiw040D4CH5hw="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:6tbSDgBw3c+QiBBVDqjpn4w63/g=
Content-Language: en-US
In-Reply-To: <uifhs0$1h42v$1@dont-email.me>
 by: Chris M. Thomasson - Wed, 8 Nov 2023 21:54 UTC

On 11/8/2023 12:45 AM, David Brown wrote:
> On 07/11/2023 15:38, David Brown wrote:
>> On 07/11/2023 13:23, Bonita Montero wrote:
>>> I can recommend the E-Book "C++ Lambda Story" from Leanpub for that.
>>> It's in this C++ book collection:
>>> <--->
>>> Password for the archive is "<--->".
>>
>> I have reported you to the author for encouraging copyright
>> infringement.  It is disgraceful that you would post such links in
>> public.  You claim to be a professional developer, yet encourage
>> stealing a $15 book from a guy who publishes an enormous amount of
>> free information on his blog.
>>
>> It is now up to the author to decide where to take this.  Hopefully at
>> a minimum the mega.nz file will be removed, and the account deleted.
>>
>
> For those that are interested, here is the real book:
>
> <https://leanpub.com/cpplambda>

Indeed. Fwiw and afaict, Bonita just might be an actual piece of shit.

https://youtu.be/AFjx1xnGxD8

Re: What's decltype doing here?

<uihoe1$22127$1@raubtier-asyl.eternal-september.org>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2526&group=comp.lang.c%2B%2B#2526

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!raubtier-asyl.eternal-september.org!.POSTED!not-for-mail
From: Bonita.Montero@gmail.com (Bonita Montero)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Thu, 9 Nov 2023 05:50:11 +0100
Organization: A noiseless patient Spider
Lines: 8
Message-ID: <uihoe1$22127$1@raubtier-asyl.eternal-september.org>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me> <uifhs0$1h42v$1@dont-email.me>
<uih037$1q2i4$4@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 9 Nov 2023 04:50:09 -0000 (UTC)
Injection-Info: raubtier-asyl.eternal-september.org; posting-host="a9604e3708dee71e445818bf67ac3a30";
logging-data="2163783"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19saJth2SpjqjgdojtmhYPxNzGDgJEpeIc="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:Is8xckfn9MVgkcNmQ/pSaIO84I4=
In-Reply-To: <uih037$1q2i4$4@dont-email.me>
Content-Language: de-DE
 by: Bonita Montero - Thu, 9 Nov 2023 04:50 UTC

Am 08.11.2023 um 22:54 schrieb Chris M. Thomasson:

> Indeed. Fwiw and afaict, Bonita just might be an actual piece of shit.
> https://youtu.be/AFjx1xnGxD8

You're really primitive.

Re: What's decltype doing here?

<uihoo6$21rab$8@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=2529&group=comp.lang.c%2B%2B#2529

  copy link   Newsgroups: comp.lang.c++
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder2.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: chris.m.thomasson.1@gmail.com (Chris M. Thomasson)
Newsgroups: comp.lang.c++
Subject: Re: What's decltype doing here?
Date: Wed, 8 Nov 2023 20:55:34 -0800
Organization: A noiseless patient Spider
Lines: 11
Message-ID: <uihoo6$21rab$8@dont-email.me>
References: <878r7950vy.fsf@bsb.me.uk>
<0754fa6f-3628-4ea1-be00-0e4ce9623add@gmail.com>
<uidi4g$11q5c$1@dont-email.me> <uifhs0$1h42v$1@dont-email.me>
<uih037$1q2i4$4@dont-email.me>
<uihoe1$22127$1@raubtier-asyl.eternal-september.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Thu, 9 Nov 2023 04:55:34 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="c15d53f2796d981aaf0ad9fa13a4e8bd";
logging-data="2157899"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18u8sZOS/2gPi6L0FiM+ntGSmoaE72emGk="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:7ZnwYWCNS/qIGRWH05qP+41VTc0=
Content-Language: en-US
In-Reply-To: <uihoe1$22127$1@raubtier-asyl.eternal-september.org>
 by: Chris M. Thomasson - Thu, 9 Nov 2023 04:55 UTC

On 11/8/2023 8:50 PM, Bonita Montero wrote:
> Am 08.11.2023 um 22:54 schrieb Chris M. Thomasson:
>
>> Indeed. Fwiw and afaict, Bonita just might be an actual piece of shit.
>> https://youtu.be/AFjx1xnGxD8
>
> You're really primitive.
>
>

You would steal the candy along with the books, right? Or, am I wrong here?

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor