frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Detecting if an expression is constant in C

https://nrk.neocities.org/articles/c-constexpr-macro#detecting-if-an-expression-is-constant-in-c
49•signa11•10mo ago

Comments

wahern•10mo ago
> This works. But both gcc and clang warn about the enum being anonymous... even though that's exactly what I wanted to do. And this cannot be silenced with #pragma since it's a macro, so the warning occurs at the location where the macro is invoked.

You can use _Pragma instead of #pragma. E.g.

  #define C(x) ( \
    _Pragma("clang diagnostic push") \
    _Pragma("clang diagnostic ignored \"-Wvisibility\"") \
    (x) + 0*sizeof(void (*)(enum { tmp = (int)(x) })) \
    _Pragma("clang diagnostic pop") \
  )
EDIT: Alas, GCC is a little pickier about where _Pragma is allowed so you may need to use a statement expression. Also, it seems GCC 14 doesn't have a -W switch that will disable the anonymous enum warning.
pjc50•10mo ago
It's remarkable that people will say that doing this kind of thing is better than learning a language which actually lets you enforce this with the type system.

(or even just insist that users use the version of the language which supports "constexpr"!)

oguz-ismail•10mo ago
What language is that? Is it available everywhere (everywhere) C is?
mitthrowaway2•10mo ago
Indeed, usually if I'm using C these days it's because I only have access to a c compiler for my target platform, or because I'm modifying an existing C codebase.
uecker•10mo ago
I do not think anybody said this. The point is that these macros work for early versions of C. If you need to support early versions of C, learning another language is not a solution. If you don't have to, you can use C23's constexpr.
trealira•10mo ago
C used to seem like a beautiful and simple language to me, but as I used it and learned more about it, it seemed more complex under the surface, and kind of janky as well. It's just utilitarian.
wat10000•10mo ago
Learning such a language doesn’t mean I can use it.
o11c•10mo ago
The problem is that no such language exists.

There are many languages that provide one particular feature that C doesn't provide, but they do this at the cost of excluding numerous other features that C widely relies on.

kjs3•10mo ago
"I have no idea what problem you're trying to solve, what the constraints are, what the use cases might be, what tools are available on the platform, what the job or regulations require, what the skillsets of the people involved are, what the timeline is...but I'm absolutely, unshakably certain that I have a magic bullet that will make all your problems go away."

FTFY.

sleirsgoevy•10mo ago
The Linux kernel has even a way to determine whether the expression is compile-time, WITHOUT aborting compilation in either case.

The trick is this (copied vebratim from Linux):

#define __is_constexpr(x) (sizeof(int) == sizeof(*(8 ? ((void *)((long)(x) * 0l)) : (int *)8)))

Explanation: if x is a constant expression, then multiplying it by zero yields a constant 0, and casting a constant 0 to void* makes a null pointer constant. And the ternary expression, if one of its sides is a null pointer constant, collapses to the type of the other side (thus the type of the returned pointer will be int*, and the sizeof will match). And if x was not constant, then the lefthand side would not be considered a null pointer constant by type inference, the type of the ternary expression will be void*, and the sizeof check will not match.

With a few more clever tricks, it's even possible to implement a compile-time "type ternary expression", like this: TYPE_IF(2 * 2 == 4, int, long). This is left as an exercise for the reader.

amelius•10mo ago
This reminds me of the days when Boost was a thing. It was full of tricks like this.
usrnm•10mo ago
It still is a thing, though.
cperciva•10mo ago
With a few more clever tricks...

I did this with my PARSENUM macro (https://github.com/Tarsnap/libcperciva/blob/master/util/pars...) to parse strings into floating-point, unsigned integer, or signed integer types (and check bounds) using a single interface.

bobbyi•10mo ago
I thought this would work:

#define C(x) (sizeof(char[x]), x)

sizeof is a compile-time operation so x need to be known at compile time.

It didn't work as expected. It turns out there is an exception and the standard says that sizeof is actually calculated at runtime specifically for variable length arrays:

> The sizeof operator yields the size (in bytes) of its operand, which may be an expression or the parenthesized name of a type. The size is determined from the type of the operand. The result is an integer. If the type of the operand is a variable length array type, the operand is evaluated; otherwise, the operand is not evaluated and the result is an integer constant.

How to turn anything into a router

https://nbailey.ca/post/router/
425•yabones•5h ago•163 comments

Bird brains (2023)

https://www.dhanishsemar.com/writing/bird-brains
243•DiffTheEnder•5h ago•151 comments

Do your own writing

https://alexhwoods.com/dont-let-ai-write-for-you/
42•karimf•6h ago•1 comments

Cherri – programming language that compiles to an Apple Shortuct

https://github.com/electrikmilk/cherri
103•mihau•2d ago•12 comments

Fedware: Government Apps That Spy Harder Than the Apps They Ban

https://www.sambent.com/the-white-house-app-has-huawei-spyware-and-an-ice-tip-line/
16•speckx•55m ago•1 comments

A sea of sparks: Seeing radioactivity

https://maurycyz.com/projects/spinthariscope/
10•maurycyz•36m ago•0 comments

CodingFont: A game to help you pick a coding font

https://www.codingfont.com/
174•nvahalik•3h ago•100 comments

OCR for construction documents does not work, we fixed it

https://www.getanchorgrid.com/developer/docs/endpoints/drawings-doors
58•wcisco17•3h ago•41 comments

Build123d: A Python CAD programming library

https://github.com/gumyr/build123d
75•Ivoah•22h ago•25 comments

Take better notes, by hand

https://brianschrader.com/archive/take-better-notes-by-hand/
102•sonicrocketman•2h ago•48 comments

In math, rigor is vital, but are digitized proofs taking it too far?

https://www.quantamagazine.org/in-math-rigor-is-vital-but-are-digitized-proofs-taking-it-too-far-...
57•isaacfrond•4d ago•47 comments

FTC action against Match and OkCupid for deceiving users, sharing personal data

https://www.ftc.gov/news-events/news/press-releases/2026/03/ftc-takes-action-against-match-okcupi...
155•gnabgib•3h ago•71 comments

Mathematical methods and human thought in the age of AI

https://arxiv.org/abs/2603.26524
162•zaikunzhang•8h ago•62 comments

ChatGPT won't let you type until Cloudflare reads your React state

https://www.buchodi.com/chatgpt-wont-let-you-type-until-cloudflare-reads-your-react-state-i-decry...
921•alberto-m•22h ago•596 comments

Seeing Like a Spreadsheet

https://davidoks.blog/p/how-the-spreadsheet-reshaped-america
4•paulpauper•2d ago•0 comments

An NSFW filter for Marginalia search

https://www.marginalia.nu/log/a_134_nsfw/
38•speckx•3h ago•5 comments

Show HN: Coasts – Containerized Hosts for Agents

https://github.com/coast-guard/coasts
24•jsunderland323•3h ago•7 comments

The curious case of retro demo scene graphics

https://www.datagubbe.se/aipixels/
316•zdw•13h ago•80 comments

New Washington state law bans noncompete agreements

https://www.seattletimes.com/business/local-business/new-washington-law-bans-noncompete-agreements/
192•toomuchtodo•2h ago•74 comments

I am definitely missing the pre-AI writing era

https://www.lesswrong.com/posts/BJ4pnropWdnzzgeJc/i-am-definitely-missing-the-pre-ai-writing-era
166•joozio•12h ago•142 comments

I use Excalidraw to manage my diagrams for my blog

https://blog.lysk.tech/excalidraw-frame-export/
228•mlysk•11h ago•98 comments

Proactively Parasocial

https://nicklandolfi.com/posts/proactively-parasocial.html
14•jxmorris12•4d ago•2 comments

Fibonacci's Composed Fractions

https://ztoz.blog/posts/fibonacci-fractions/
4•aebtebeten•3d ago•1 comments

You are falling behind because you haven't fed the insincerity machine

https://christianheilmann.com/2026/03/28/you-are-falling-behind-because-you-havent-fed-the-insinc...
86•speckx•2h ago•14 comments

Hamilton-Jacobi-Bellman Equation: Reinforcement Learning and Diffusion Models

https://dani2442.github.io/posts/continuous-rl/
132•sebzuddas•11h ago•39 comments

The ladder is missing rungs – Engineering Progression When AI Ate the Middle

https://negroniventurestudios.com/2026/03/19/the-ladder-is-missing-rungs/
29•sorenvrist•5h ago•1 comments

DigitalOcean Seeks $800M in Funding

https://www.datacenterdynamics.com/en/news/digitalocean-seeks-800m-in-funding/
38•herbertl•1h ago•20 comments

Comprehensive C++ Hashmap Benchmarks (2022)

https://martin.ankerl.com/2022/08/27/hashmap-bench-01/
53•klaussilveira•5d ago•16 comments

Copilot edited an ad into my PR

https://notes.zachmanson.com/copilot-edited-an-ad-into-my-pr/
1332•pavo-etc•15h ago•543 comments

VHDL's Crown Jewel

https://www.sigasi.com/opinion/jan/vhdls-crown-jewel/
135•cokernel_hacker•14h ago•49 comments