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 48a5dd9 commit f9e63b7Copy full SHA for f9e63b7
storage/rocksdb/rdb_utils.h
@@ -113,7 +113,11 @@ namespace myrocks {
113
contains the signature of the function as well as its bare name and provides
114
therefore more context when interpreting the logs.
115
*/
116
-#define DBUG_ENTER_FUNC() DBUG_ENTER(__PRETTY_FUNCTION__)
+#ifdef __GNUC__
117
+# define DBUG_ENTER_FUNC() DBUG_ENTER(__PRETTY_FUNCTION__)
118
+#else
119
+# define DBUG_ENTER_FUNC() DBUG_ENTER(__func__)
120
+#endif
121
122
/*
123
Error handling pattern used across MySQL abides by the following rules: "All
0 commit comments