Deutsch   English   Français   Italiano  
<vegevc$m5na$1@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Thiago Adams <thiago.adams@gmail.com>
Newsgroups: comp.lang.c
Subject: Re: constexpr keyword is unnecessary
Date: Sun, 13 Oct 2024 09:38:04 -0300
Organization: A noiseless patient Spider
Lines: 25
Message-ID: <vegevc$m5na$1@dont-email.me>
References: <veb5fi$3ll7j$1@dont-email.me> <vedv0a$5m19$1@dont-email.me>
 <veeqhi$ar0c$2@dont-email.me> <veg59o$kolq$1@dont-email.me>
 <vegbeb$llri$2@dont-email.me>
 <vegc3l$lqrd$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: Sun, 13 Oct 2024 14:38:04 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="b9d5dd9688ffdaba1d061cdfa3066275";
	logging-data="726762"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX1/IaWhwmTb6wIOiVEFysP9NdOVZ67RIUyE="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:RC79gbHUj1LnKbfOtcpcIuPOYwI=
Content-Language: en-GB
In-Reply-To: <vegc3l$lqrd$1@raubtier-asyl.eternal-september.org>
Bytes: 1974

Em 10/13/2024 8:49 AM, Bonita Montero escreveu:
> Am 13.10.2024 um 13:37 schrieb Thiago Adams:
> 
>> Yes.
>> constexpr is like - "require the initializer to be a constant 
>> expression." But the compiler will have to check it anyway.
> 
> I cannot understand why you are so militantly against this
> new language feature that can be understood in 10 seconds.
> 

I have seen code like this:

void func()
{
    constexpr int c = 1;
    f(c);
}

For some reason, people believe that adding constexpr will magically 
improve optimization. In reality, it doesn't change anything compared to 
const and often reflects a misunderstanding of how the compiler works. 
As a result, I end up having to explain it. In this sense, constexpr is 
viral and spreads confusion.