summaryrefslogtreecommitdiffstats
path: root/src/markdown.cpp
diff options
context:
space:
mode:
authorArmandZampieri <armand.zampieri@laposte.net>2020-10-05 18:09:42 (GMT)
committerGitHub <noreply@github.com>2020-10-05 18:09:42 (GMT)
commit8c8a6a39b74add04356c0b4e67b459fe9d0c5494 (patch)
treed530c77379b40b62788d16a76ce6a6bae967fa55 /src/markdown.cpp
parent43cf803fa0c105f584da9479d0a20f704900f418 (diff)
downloadDoxygen-8c8a6a39b74add04356c0b4e67b459fe9d0c5494.zip
Doxygen-8c8a6a39b74add04356c0b4e67b459fe9d0c5494.tar.gz
Doxygen-8c8a6a39b74add04356c0b4e67b459fe9d0c5494.tar.bz2
added support for mingw PRETTY_FUNC (#8059)
* added support for mingw PRETTY_FUNC * More compact Define test for PRETTY_FUNCTION * corrected synthax issue Co-authored-by: ZAMPIERI Armand <armand.zampieri@cmigroupe.com>
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r--src/markdown.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp
index 1a7a382..ae78533 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -59,7 +59,7 @@
#ifdef ENABLE_TRACING
#define IOSTREAM stdout
#define DATA_BUFSIZE 20
-#if defined(_WIN32) && !defined(CYGWIN)
+#if defined(_WIN32) && !defined(CYGWIN) && !defined(__MINGW32__)
#define PRETTY_FUNC __FUNCSIG__
#else
#define PRETTY_FUNC __PRETTY_FUNCTION__