C++ Logo

std-proposals

Advanced search

Re: [std-proposals] [[pure]] attribute

From: Bo Persson <bo_at_[hidden]>
Date: Tue, 4 Mar 2025 14:53:54 +0100
On 2025-03-04 at 09:43, Sebastian Wittmeier via Std-Proposals wrote:
> Hi Tymi,
>
> for the definition of pure:
>
> May a pure function only call other pure functions or is it enough, if
> the other function has no side effects?
>
> f(int i)
>
> {
>
> if (i == 1)
>
> side_effect();
>
> }
>
> f(0) would have no side effect, but f as a whole is not pure.
>
> Can a pure function call f(0)? Would the compiler know, if f is in
> another translation unit, which parameter combinations make it pure?
>

This is sqrt(-1) setting errno to EDOM. So not pure?

Received on 2025-03-04 13:53:59