diff --git a/include/villas/nodes/websocket.hpp b/include/villas/nodes/websocket.hpp index 821f2aa57..ba6db028f 100644 --- a/include/villas/nodes/websocket.hpp +++ b/include/villas/nodes/websocket.hpp @@ -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(); diff --git a/include/villas/path.hpp b/include/villas/path.hpp index 59a5fd673..b2a9e5050 100644 --- a/include/villas/path.hpp +++ b/include/villas/path.hpp @@ -126,7 +126,8 @@ public: return os; } - std::string toString() { + std::string toString() + { std::stringstream ss; ss << *this; return ss.str();