Ben Wolsieffer

Results 26 issues of Ben Wolsieffer

The `image_cb_detector` and `laser_cb_detector` packages try to find the Boost signals library. This library is not used by these packages and has been deprecated since Boost 1.54 and was removed...

`GLUT_LIBRARY` is deprecated, and, more importantly, is not normally set since CMake 3.22. This looks like a [CMake bug](https://gitlab.kitware.com/cmake/cmake/-/issues/23370), but it is good to not use deprecated things anyway.

When cross-compiling, there are different versions of `defaultCrateOverrides` for each platform. This causes `buildRustCrateWithFeatures` to think the user has passed a custom value of `crateOverrides`, which prevents the normal `defaultCrateOverrides`...

Implement `From` conversions from non-deterministic transition enums to the state enum, if enabled. This makes it a lot nicer to work with non-deterministic transitions. I've never worked on a proc...

Proxy uses `PhantomData`, which prevents it from implementing `Send`. I see that this was done intentionally for `Proxy` in https://github.com/olson-sean-k/decorum/commit/e86386237bb35964cfd5ebae092579f610a0ce4b (while all the other types use `fn() -> P`), but...

The `CMAKE_INSTALL_*DIR` variables are allowed to be absolute paths, but the pkgconfig file template assumes they are relative. This is a common problem, and the fix is described here: https://github.com/jtojnar/cmake-snips#concatenating-paths-when-building-pkg-config-files

Superflore Nix generator began regeneration of all packages from ROS distro ['humble', 'iron', 'noetic', 'rolling'] from nix-ros-overlay commit 1d5ae52f3e9c71604c52c6464c5e4eed4f8b14b8. This pull request was generated by running the following command: ```...

Currently, when a trigger unlock request is sent to keepasshttp, it opens the main window as well as the unlock dialog. This behavior can be stopped by deleting lines [340-343...

With copy-on-write enabled, I am noticing that certain files are being written to a read only branch. This seems to have something to do with the fact that the files...