Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use the 'bullet' utf-8 encoded value instead of the char directly #488

Merged
merged 1 commit into from
Feb 4, 2024

Conversation

j-rivero
Copy link
Contributor

@j-rivero j-rivero commented Feb 3, 2024

Related to the works of #486:

Compilation was broken on latest Debian Sid (gcc-13) complaining about unmappable character (0xE2) for encoding US-ASCII.

[ 24%] Building C object lcmgen/CMakeFiles/lcm-gen.dir/emit_cpp.c.o
cd /builds/jrivero-guest/lcm/debian/output/source_dir/obj-x86_64-linux-gnu/lcmgen && /usr/lib/ccache/cc  -I/builds/jrivero-guest/lcm/debian/output/source_dir/obj-x86_64-linux-gnu/lcmgen -I/builds/jrivero-guest/lcm/debian/output/source_dir/lcmgen -isystem /usr/include/glib-2.0 -isystem /usr/lib/x86_64-linux-gnu/glib-2.0/include -g -O2 -ffile-prefix-map=/builds/jrivero-guest/lcm/debian/output/source_dir=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 -std=gnu99 -Wno-format-zero-length -fvisibility=hidden -MD -MT lcmgen/CMakeFiles/lcm-gen.dir/emit_cpp.c.o -MF CMakeFiles/lcm-gen.dir/emit_cpp.c.o.d -o CMakeFiles/lcm-gen.dir/emit_cpp.c.o -c /builds/jrivero-guest/lcm/debian/output/source_dir/lcmgen/emit_cpp.c
lcm/spy/Spy.java:41: error: unmappable character (0xE2) for encoding US-ASCII
            String spacer = "  ???  ";
                               ^
lcm/spy/Spy.java:41: error: unmappable character (0x80) for encoding US-ASCII
            String spacer = "  ???  ";
                                ^
lcm/spy/Spy.java:41: error: unmappable character (0xA2) for encoding US-ASCII
            String spacer = "  ???  ";
                                 ^
lcm/logging/LogPlayer.java:1123: error: unmappable character (0xE2) for encoding US-ASCII
                String spacer = "  ???  ";
                                   ^
lcm/logging/LogPlayer.java:1123: error: unmappable character (0x80) for encoding US-ASCII
                String spacer = "  ???  ";
                                    ^
lcm/logging/LogPlayer.java:1123: error: unmappable character (0xA2) for encoding US-ASCII
                String spacer = "  ???  ";
                                     ^
6 errors
make[4]: *** [lcm-java/CMakeFiles/lcm-java.dir/build.make:120: lcm-java/CMakeFiles/lcm-java.dir/java_compiled_lcm-java] Error 1

The commit change the utf-8 dot char by its encoded representation \u2022 according to https://www.compart.com/en/unicode/U+2022.

Compilation was broken on latest Debian Sid (gcc-13) complaining
about unmappable character (0xE2) for encoding US-ASCII.

The commit change the utf-8 dot char by its encoded representation
\u2022.

Signed-off-by: Jose Luis Rivero <jrivero@osrfoundation.org>
@nosracd nosracd merged commit 8cd5cd9 into lcm-proj:master Feb 4, 2024
11 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants