diff --git a/app/play/play_cli/src/ecal_play_cli.cpp b/app/play/play_cli/src/ecal_play_cli.cpp index e0cd11e1db..3049a1a718 100644 --- a/app/play/play_cli/src/ecal_play_cli.cpp +++ b/app/play/play_cli/src/ecal_play_cli.cpp @@ -43,6 +43,7 @@ #pragma warning(push) #pragma warning(disable: 4800 ) #endif //_MSC_VER +#include // 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 #ifdef _MSC_VER #pragma warning(pop) diff --git a/app/rec/rec_server_cli/src/commands/status.cpp b/app/rec/rec_server_cli/src/commands/status.cpp index 09ed0a3fee..768b497e5d 100644 --- a/app/rec/rec_server_cli/src/commands/status.cpp +++ b/app/rec/rec_server_cli/src/commands/status.cpp @@ -38,6 +38,7 @@ #pragma warning(disable: 4800) // disable termcolor warnings #endif + #include // 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 #ifdef _MSC_VER diff --git a/app/rec/rec_server_cli/src/commands/table_printer.cpp b/app/rec/rec_server_cli/src/commands/table_printer.cpp index 5b202af719..ddb1ddbf1d 100644 --- a/app/rec/rec_server_cli/src/commands/table_printer.cpp +++ b/app/rec/rec_server_cli/src/commands/table_printer.cpp @@ -30,6 +30,7 @@ #pragma warning(disable: 4800) // disable termcolor warnings #endif + #include // 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 #ifdef _MSC_VER diff --git a/app/sys/sys_cli/src/commands/list.cpp b/app/sys/sys_cli/src/commands/list.cpp index 76fd29c4f5..8fc98c9c8f 100644 --- a/app/sys/sys_cli/src/commands/list.cpp +++ b/app/sys/sys_cli/src/commands/list.cpp @@ -32,6 +32,7 @@ #pragma warning(push) #pragma warning(disable: 4800) // disable termcolor warnings #endif +#include // Needed for termcolor. Currently (2023-10-26) termcolor does not include this header file. #include #ifdef _MSC_VER #pragma warning(pop)