summaryrefslogtreecommitdiffstats
path: root/src/portable.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-04-27 18:28:28 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-04-27 18:28:28 (GMT)
commit524176c4c1c1a3af5ec9152d2b50eaa2b9b7c47b (patch)
tree8904a4acaa1989f948d6de983474910aa5e50aa4 /src/portable.cpp
parent4910e7500060284d815092d8058bbc3e30b925c8 (diff)
downloadDoxygen-524176c4c1c1a3af5ec9152d2b50eaa2b9b7c47b.zip
Doxygen-524176c4c1c1a3af5ec9152d2b50eaa2b9b7c47b.tar.gz
Doxygen-524176c4c1c1a3af5ec9152d2b50eaa2b9b7c47b.tar.bz2
Optimize performance by using FILE* instead of ofstream for outputgen
Diffstat (limited to 'src/portable.cpp')
-rw-r--r--src/portable.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/portable.cpp b/src/portable.cpp
index 7bcc830..60c5189 100644
--- a/src/portable.cpp
+++ b/src/portable.cpp
@@ -339,6 +339,11 @@ FILE *Portable::fopen(const QCString &fileName,const QCString &mode)
#endif
}
+int Portable::fclose(FILE *f)
+{
+ return ::fclose(f);
+}
+
QCString Portable::pathSeparator()
{
#if defined(_WIN32) && !defined(__CYGWIN__)