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 ce8fc7d commit bc84506Copy full SHA for bc84506
xcsf/pybind_wrapper.cpp
@@ -654,7 +654,8 @@ class XCS
654
char filename[] = "/tmp/xcsf_pickle_XXXXXX";
655
int fd = mkstemp(filename);
656
if (fd == -1) {
657
- throw std::runtime_error("Failed to create temporary file in serialize");
+ throw std::runtime_error(
658
+ "Failed to create temporary file in serialize");
659
}
660
close(fd);
661
@@ -685,7 +686,8 @@ class XCS
685
686
687
688
- throw std::runtime_error("Failed to create temporary file in deserialize");
689
690
+ "Failed to create temporary file in deserialize");
691
692
693
0 commit comments