Skip to content

Commit 1719863

Browse files
committed
Add missing #include + namespace
1 parent 200fa32 commit 1719863

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/data_receiver.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#include "cast.h"
12
#include "data_receiver.h"
23
#include "api_config.h"
34
#include "cancellable_streambuf.h"
@@ -232,7 +233,7 @@ void data_receiver::data_thread() {
232233
"not supported.");
233234
}
234235
if (type == "suppress-subnormals")
235-
suppress_subnormals = from_string<bool>(rest);
236+
suppress_subnormals = lsl::from_string<bool>(rest);
236237
if (type == "uid" && rest != conn_.current_uid())
237238
throw lost_error("The received UID does not match the current "
238239
"connection's UID.");

0 commit comments

Comments
 (0)