fixed build again

This commit is contained in:
AlexandreRouma 2023-02-08 01:40:44 +01:00
parent 7094368113
commit fd65984762

View File

@ -1,4 +1,5 @@
#include "rigctl.h" #include "rigctl.h"
#include <math.h>
namespace net::rigctl { namespace net::rigctl {
Client::Client(std::shared_ptr<Socket> sock) { Client::Client(std::shared_ptr<Socket> sock) {
@ -315,4 +316,4 @@ namespace net::rigctl {
sprintf(buf, "%lf\n", value); sprintf(buf, "%lf\n", value);
sock->sendstr(buf); sock->sendstr(buf);
} }
} }