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

GCC 13: Added workaround for termcolor bug (missing include) #1228

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/play/play_cli/src/ecal_play_cli.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
#pragma warning(push)
#pragma warning(disable: 4800 )
#endif //_MSC_VER
#include <cstdint> // Needed for termcolor. Currently (2023-10-26) termcolor does not include this header file, but it is needed for Ubuntu 23.10 / gcc 13.2: https://github.com/ikalnytskyi/termcolor/pull/72
#include <termcolor/termcolor.hpp>
#ifdef _MSC_VER
#pragma warning(pop)
Expand Down
1 change: 1 addition & 0 deletions app/rec/rec_server_cli/src/commands/status.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
#pragma warning(disable: 4800) // disable termcolor warnings
#endif

#include <cstdint> // Needed for termcolor. Currently (2023-10-26) termcolor does not include this header file, but it is needed for Ubuntu 23.10 / gcc 13.2: https://github.com/ikalnytskyi/termcolor/pull/72
#include <termcolor/termcolor.hpp>

#ifdef _MSC_VER
Expand Down
1 change: 1 addition & 0 deletions app/rec/rec_server_cli/src/commands/table_printer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#pragma warning(disable: 4800) // disable termcolor warnings
#endif

#include <cstdint> // Needed for termcolor. Currently (2023-10-26) termcolor does not include this header file, but it is needed for Ubuntu 23.10 / gcc 13.2: https://github.com/ikalnytskyi/termcolor/pull/72
#include <termcolor/termcolor.hpp>

#ifdef _MSC_VER
Expand Down
1 change: 1 addition & 0 deletions app/sys/sys_cli/src/commands/list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#pragma warning(push)
#pragma warning(disable: 4800) // disable termcolor warnings
#endif
#include <cstdint> // Needed for termcolor. Currently (2023-10-26) termcolor does not include this header file.
#include <termcolor/termcolor.hpp>
#ifdef _MSC_VER
#pragma warning(pop)
Expand Down
Loading