jwdevel
jwdevel
Hi @gpakosz, Yes, I take your point, and maybe PPK_ASSERT is just a runtime-only facility. I went down this path because I can use plain `assert()` in my `constexpr` functions....
This can be configured at compile time by `#define CATCH_CONFIG_CONSOLE_WIDTH` or `CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH`. I don't see any option to do it at runtime, though.
Follow-up: commenting out this line of test code removes the warning, so it must somehow originate from there: nErrorCount += TestFixedTupleVectorVariant(); Also, changing `bEnableOverflow` from `false` to `true` removes the...
I'm not sure if #354 is fully a dupe of this, but seems suspiciously related due to it being in `fixed_tuple_vector` and the same line... I can currently repro it...
I found that removing `EASTL_UNLIKELY` from the check added in #280 fixes the warning for me. I am a little perplexed by this, since a cursory look at the definition...
Sorry, the feature I'm referring to is: using `--ignore-dir` (or `--ignore-path` in ack3?) to match against the full path, not just the last trailing component of the path. For instance,...
That's correct, as long as I read the `/foo/` to mean `/` is a path separator (you mentioned regex delimiter no longer needed, so I assume so). In truth, I'm...
> I think you would have to make it relative to the current directory, and NOT the target directory you're searching, because there could be multiples. I agree with this,...
Oh, and to specifically answer this bit, with the above in mind: > Because what if you want to search storage/ and what's below it and ignore project_1/config, how would...
> I'm not sure why this needs to be so complicated. Sorry, I didn't mean my long discussion to make it seem hairier than it is (: I think the...