Paul Lesur

Results 9 issues of Paul Lesur

Code sample: ```cpp #ifndef MEOW_H_ATIHVJ0Z #define MEOW_H_ATIHVJ0Z #define some_export_macro class Meow; Meow some_export_macro meow(); #endif /* end of include guard: MEOW_H_ATIHVJ0Z */ ``` Expected result: ```bash $ cppclean meow.h ```...

When editing this: ```cpp #include int main(int argc, char *argv[]) { Eigen::Matrix3d bar; bar(0,0) = 1; return 0; } ``` I get this error: `[Error]called object type 'Eigen::Matrix3d' (aka 'int')...

## Is your feature request related to a problem? Please describe. Right now, the floating hover window only disappears on a cursor move; the idea being that, on another 'hover'...

After encountering many issues running DynaSLAM on my machine (tensorlfow/cuda/protobuf versions...), I tried running it with Docker Here's the backtrace when I compile in `Debug` ``` nImages: 1021 Loading Mask...

Fix building: 1. Remove mono_carla target, which was removed in the last commit 2. Detect if VIRTUAL_ENV is defined, and use the correct python includes therefrom

# Info **What's the output of `:CocInfo`** ``` ## versions vim version: NVIM v0.9.0-dev-839+g3ac55fe08 node version: v18.7.0 coc.nvim version: 0.0.82-b7375d5f 2023-01-30 05:09:03 +0800 coc.nvim directory: /home/lesurp/.local/share/nvim/plugged/coc.nvim term: xterm platform: linux...

can't reproduce

Hi, I made a small docker container that made my life easier (especially since you use ECMAScript v6) and could probably be useful to others as well: https://github.com/pLesur/PoistonTapContainer

enhancement

Hi, 1. Issue When compiling (cargo build), I get this error: ``` error[E0412]: type name `c::pso::AccessInfo` is undefined or not in scope --> /home/plesur/.cargo/registry/src/github.com-1ecc6299db9ec823/gfx-0.14.1/src/pso/mod.rs:54:26 | 54 | pub type AccessInfo...

Here is an MRE for my problem: ```rust use zerocopy::{Immutable, IntoBytes}; #[repr(C, packed(4))] #[derive(Debug, Clone, Copy, Immutable, IntoBytes)] pub struct Header { pub a: u32, pub b: u32, } const...