Skip to content

Commit 8b1b664

Browse files
committed
Add missing stdint header
1 parent feb068e commit 8b1b664

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/unicode_cpp_generator.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828

2929
// C++
3030
#include <algorithm>
31+
#include <cstdint>
3132
#include <cstring>
3233
#include <fstream>
3334
#include <iostream>
@@ -179,7 +180,8 @@ int main(int argc, const char **argv) {
179180
std::ofstream out_file(output_dir + "unicode_blocks_" + unicode_vers + ".hpp",
180181
std::ofstream::out);
181182
if (!out_file.is_open()) {
182-
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";
183185
return 1;
184186
}
185187

0 commit comments

Comments
 (0)