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 feb068e commit 8b1b664Copy full SHA for 8b1b664
src/unicode_cpp_generator.cpp
@@ -28,6 +28,7 @@
28
29
// C++
30
#include <algorithm>
31
+#include <cstdint>
32
#include <cstring>
33
#include <fstream>
34
#include <iostream>
@@ -179,7 +180,8 @@ int main(int argc, const char **argv) {
179
180
std::ofstream out_file(output_dir + "unicode_blocks_" + unicode_vers + ".hpp",
181
std::ofstream::out);
182
if (!out_file.is_open()) {
- std::cerr << "Error: Failed to open header for writing: " << output_dir << "unicode_blocks_" << unicode_vers << ".hpp";
183
+ std::cerr << "Error: Failed to open header for writing: " << output_dir << "unicode_blocks_"
184
+ << unicode_vers << ".hpp";
185
return 1;
186
}
187
0 commit comments