Caio Oliveira

Results 8 issues of Caio Oliveira

When `clr-boot-manager update` is called (manually or as part of `swupd update`) while the machine is running a custom kernel (not the ones provided by Clear), it seems to exit...

bug
content collection

Is there a way to override the linker path to use something other than "/usr/bin/ld"? Context: trying to get circle working in NixOS, which keeps packages all separated from each...

When porting code from `std::variant` to the new choice type, I've noticed `==` is not implemented for `choice`. It seems to me this could be possible for the compiler to...

When using the "overloaded" helper for std::visit() (from https://en.cppreference.com/w/cpp/utility/variant/visit) together with the template_brackets feature, if we forget to add the `!` (as noted below), compiler will crash. Interestingly, if the...

This is a narrowed down version of the original code. Circle build 195. Blind guess here is compile time evaluation is getting tripped by uint8_t somehow...? ``` // If not...

With circle build 195, the following C++ 20 program output different results for `f` and `g` calls. clang++ 14 and g++ 11.3 both work as expected. ``` $ for c...

_(UPDATED COMMIT MESSAGE)_ VK_KHR_driver_properties requires VK_KHR_get_physical_device_properties2 extension. For Vulkan 1.2 both extensions are core, so nothing to do, for Vulkan 1.1, the latter is core, so only need the former....