cc_timer.h: Fix missing include for std::string in cc_timer.h

Added the missing #include <string> directive to cc_timer.h to
resolve compilation error due to incomplete type 'std::string'.
Observed with g++ 13.
This commit is contained in:
2024-05-30 22:22:16 +02:00
parent 409e21e782
commit 27a9141275

View File

@@ -33,6 +33,7 @@
#include <sigc++/adaptors/retype_return.h> #include <sigc++/adaptors/retype_return.h>
#include <thread> #include <thread>
#include <mutex> #include <mutex>
#include <string>
/**CComponentsTimer /**CComponentsTimer
* Member of CComponents. Provides a generic timer class * Member of CComponents. Provides a generic timer class