Alexander Lanin

Results 35 comments of Alexander Lanin

Indeed "interesting". Especially since adding `!std::is_const` to enable_if / concepts is way less helpful. As mentioned above instead of "this is the correct function, but you can't call it", you...

Sorry, I'll try to reproduce after vacation. Please give me 10 more days.

I cannot reproduce this in any reasonably small example. Attempted with one/multiple cpp files, one/multiple executables, different combinations of branches / function calls, throw/non-throw branches. In all cases branch counts...

I currently have the colon + list use case 3-5 times in a very small project with only 2 dozen cpp files in ccache/ccache#573. So it feels quite standard to...

This issue still persists for me. svg doesn't show in preview. html looks fine. VS Code version 1.71.0 edit: Sorry, I had `plantuml_output_format = "svg_obj"`. But upon switching to `plantuml_output_format...

Can't ccache scan for __has_include and disable direct mode for those files? A little bit similar like https://github.com/ccache/ccache/blob/577656afb5f4a0ccdebe24409fa15b2ea60a3f58/src/hashutil.cpp#L208

@afbjorklund: I just discovered this great idea, but I'm a little suspicious how that could be implemented. Could you point me to your last implementation attempt? Is it this one?...

Not so small change for ccache, but others do it for example like this: https://github.com/mbitsnbites/buildcache/blob/master/lua-examples/gcc_wrapper.lua

The best I can figure out at the moment is to create a ccache-set-defaults.sh file like this one: ``` #!/bin/bash # # Sets reasonable ccache defaults for our project. #...

Another option is to use this one by @craigscott-crascit. In contrast to the above it overrides local user settings. > Permission is given to use any of the code samples...