You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
seemed like a comma is missing just before fmt.
I added a comma myself and the compile errors are gone. So I'd confirm it's a bug(or typo, maybe).
PS, some env specs:
System: Archlinux
gcc version: 6.1.1
ros version: jade
rviz version: 1.12.1
I was trying to install ros-jade via AUR packages, and the errors emerged. Gook luck Arch guys : )
The text was updated successfully, but these errors were encountered:
/home/victor/Workspace/playground/boost/src/main.cpp:2: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
#define PRINT_ERROR(m) fprintf(stderr, "it's a shit:"m" , (%s %s)\n", __FILE__, __FUNCTION__)
^
Note it says C++11 requires a space between..., so adding this space would eliminate the error.
PS: The compiler is clang (instead of g++ when building rviz using cmake). You could see the difference of error messages. clang clearly tells you what the error is, pointing a right way to solve it, while g++ just complain something like this:
/home/victor/Workspace/playground/boost/src/main.cpp:2: error: unable to find string literal operator 'operator""m' with 'const char [24]', 'long unsigned int' arguments
#define PRINT_ERROR(m) fprintf(stderr, "it's a shit:"m" , (%s %s)\n", __FILE__, __FUNCTION__)
^
Hi, there
I'm compiling
rviz
on my dev-machine. But it seemed an error in the filesrc/rviz/default_plugin/effort_display.h
on line 39 & 45:
seemed like a comma is missing just before
fmt
.I added a comma myself and the compile errors are gone. So I'd confirm it's a bug(or typo, maybe).
PS, some env specs:
System: Archlinux
gcc version: 6.1.1
ros version: jade
rviz version: 1.12.1
I was trying to install ros-jade via AUR packages, and the errors emerged. Gook luck Arch guys : )
The text was updated successfully, but these errors were encountered: