1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

make compatible to fmt version 9.0.3 review fixes

Signed-off-by: Manuel Pitz <manuel.pitz@eonerc.rwth-aachen.de>
This commit is contained in:
Manuel Pitz 2023-01-10 16:32:24 +01:00
parent c4bce72c04
commit cf04f6b569
2 changed files with 5 additions and 3 deletions

View file

@ -26,7 +26,7 @@ namespace villas {
namespace node {
/* Forward declarations */
// class NodeCompat;
class NodeCompat;
#define DEFAULT_WEBSOCKET_QUEUE_LENGTH (DEFAULT_QUEUE_LENGTH * 64)
@ -97,7 +97,8 @@ struct websocket_connection {
return os;
}
std::string toString() {
std::string toString()
{
std::stringstream ss;
ss << *this;
return ss.str();

View file

@ -126,7 +126,8 @@ public:
return os;
}
std::string toString() {
std::string toString()
{
std::stringstream ss;
ss << *this;
return ss.str();