We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 200fa32 commit 1719863Copy full SHA for 1719863
src/data_receiver.cpp
@@ -1,3 +1,4 @@
1
+#include "cast.h"
2
#include "data_receiver.h"
3
#include "api_config.h"
4
#include "cancellable_streambuf.h"
@@ -232,7 +233,7 @@ void data_receiver::data_thread() {
232
233
"not supported.");
234
}
235
if (type == "suppress-subnormals")
- suppress_subnormals = from_string<bool>(rest);
236
+ suppress_subnormals = lsl::from_string<bool>(rest);
237
if (type == "uid" && rest != conn_.current_uid())
238
throw lost_error("The received UID does not match the current "
239
"connection's UID.");
0 commit comments