summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2023-02-05 00:21:35 +0100
committerMatthias Melcher <github@matthiasm.com>2023-02-05 00:22:08 +0100
commitfa9915e1e3d551e6f647e60a36bd01f0e6ed2346 (patch)
tree9ca4c74572fa66199723e7b64232416ac90cce97 /FL
parent130a1c21a7e36371f8da993c50ac7f9982c5768a (diff)
Doxygen fix for FL_DEPRECATED
Diffstat (limited to 'FL')
-rw-r--r--FL/fl_attr.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/FL/fl_attr.h b/FL/fl_attr.h
index a75f0c0d8..88e03a90a 100644
--- a/FL/fl_attr.h
+++ b/FL/fl_attr.h
@@ -54,10 +54,12 @@
FL_DEPRECATED("Outdated, don't use", int position()) { return position_; }
\endcode
*/
-#define FL_DEPRECATED(msg, func) [[deprecated(msg)]] func
+#define FL_DEPRECATED(msg, func) \
+ /##*##* \deprecated msg *##/ \
+ func
-#else
+#else /* FL_DOXYGEN */
/*