technic93

Results 42 comments of technic93

It is good that gcc forbids the creating reference to unaligned structure field. Clang does not, and this would likely result with ub on some platforms. The assertion from the...

Update: So the `structure_to_tuple` works because it binds by constant reference (actually it's happening in `tie_as_tuple()`), and in case of gcc it seem to copy the value. See small example...

also see the following clang bug https://bugs.llvm.org/show_bug.cgi?id=28571

I think you can use something like this ```cpp template consteval bool get_padding() { namespace hana = boost::hana; auto field_size = [](auto i) { return sizeof(boost::pfr::get(std::declval())); }; constexpr size_t count...

Maybe you can pass optional lambda as an argument. Because tokenizer cannot do this, due to it's `&str -> &str` signature. Actually it may be useful to hold internal state...

> RegexpTokenizer does have an internal state inside Regex I think `Regex` uses `RefCell` inside to maintain some cache, and hide internal mutability. Well, this is the other option.

@abalter The `-i` option starts `bash` in interactive mode that means that it loads your `~/.bashrc` file, and you probably have conda activation there.

> When reading again your description you mentioned that you loaded the HIVE in registry. Please only do this for debugging purposes to check that the registry contains the necessary...

So when I load the hive I have the following registry data: ``` [HKEY_LOCAL_MACHINE\qqqq\Software\Microsoft\VisualStudio\17.0_8e008d08_Config\TeamFoundation\SourceControl\Checkin Policies] "StanPolicy"="C:\\Program Files\\Microsoft Visual Studio\\2022\\Professional\\Team Tools\\Static Analysis Tools\\StanPolicy.dll" "Microsoft.TeamFoundation.Build.Controls"="c:\\program files\\microsoft visual studio\\2022\\professional\\common7\\ide\\commonextensions\\microsoft\\teamfoundation\\team explorer\\Microsoft.TeamFoundation.Build.Controls.dll" "Microsoft.TeamFoundation.VersionControl.Controls"="c:\\program files\\microsoft visual...

Hi, great to see activity here. I am also looking forward to see this feature implemented! What is the advantage to use git cherry-pick instead of merge? For me the...