Larry Gritz

Results 1056 comments of Larry Gritz

I think that in sufficiently advanced C++ standard, a bunch of it may become constexpr and thus compile-time checkable. Short of that, I think it is possible to fix this...

I completely agree.

See #4400 for my attempt to address this: * No terminate * No actual thrown exception -> should mean that a bad format won't crash the app. But you will...

Have I misunderstood issue the whole time? The first post with the stack trace was of fmt itself hitting its internal assertion, which I *thought* could only happen in a...

static thread_local ErrorHolder error_msg_holder; The error holder itself is thread local.

I don't think we have it specifically planned, but if anybody wanted to make the PRs to make it work, I think we would happily accept them as long as...

Sounds great, @Treata11. On the OIIO side, as you note, it is an especially complex dependency situation. However, most of those dependencies are used to support particular image file formats,...

That's a good idea, I will do so.

If this helps anybody who wants to work on this, quite a bit before this issue was even filed, I had made the following note ot myself elsewhere: --- We...

We intentionally trade a little performance (maybe? see below) for numerical stability. The problem with `a+(b-a)*x` is that it looks good as "Real number mathematics", but when implemented with `float`...