Gábor Csorvási

Results 5 issues of Gábor Csorvási

I've included the following file to the repo: vcpkg.json ``` json { "name": "antsimulator", "version": "1.0", "dependencies": [ "sfml" ] } ``` If the toolchain file is set for CMake...

The layer selection is added, but the command line interface uses only the layer-id which is not really user friendly, altough that is only the CLI. Unfortunately I was not...

In [roscpp_serialization/include/ros/serialization.h:417](https://github.com/ros/roscpp_core/blob/eabafec8f9b554d5389a1aa1b3c8145c07faaefb/roscpp_serialization/include/ros/serialization.h#L417) v.size() returns with `size_t` and the serializedLength returns with `uint32_t`. `size_t` on 64-bit systems usually 64 bit wide, so this line cause a warning. (I noticed this on...

I have an environment variable which contains characters with non-utf8 coding. Because of this the build fails with the following error: ``` File "C:/catkin_ws/build/catkin_generated/generate_cached_setup.py", line 22, in code = generate_environment_script('C:/catkin_ws/devel/env.bat')...

Our tests names contains some kind of grouping, the group names are separated by dots. For example the following tests are reported by catch2: group1.subgroup1.testname1 group1.subgroup1.testname2 group1.subgroup2.testname3 group2.testname4 group2.testname5 And...

enhancement
test-grouping