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 8cb0418 commit d95e9f7Copy full SHA for d95e9f7
src/ccutil/tprintf.h
@@ -33,8 +33,8 @@ TESS_API FILE *get_debugfp();
33
34
// Main logging function. Trace printf.
35
template <typename ... Types>
36
-auto tprintf(Types && ... args) {
37
- return fprintf(get_debugfp(), std::forward<Types>(args)...);
+auto tprintf(const char *format, Types && ... args) {
+ return fprintf(get_debugfp(), format, std::forward<Types>(args)...);
38
}
39
40
} // namespace tesseract
0 commit comments