summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2021-01-20 15:29:02 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2021-09-10 20:00:06 +0900
commitb7cd9a3b7946107ad2b2d2e71a628dcb04f6f960 (patch)
tree23234cc44f68a1383510978fd2dbbaa85929f9db
parent538a3919d993a253e0aef14ca2fab8f65aa87634 (diff)
include/ruby/internal/constant_p.h: add doxygen
Must not be a bad idea to improve documents. [ci skip]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4815
-rw-r--r--include/ruby/internal/constant_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/internal/constant_p.h b/include/ruby/internal/constant_p.h
index 64ff8e628a..92d69cb972 100644
--- a/include/ruby/internal/constant_p.h
+++ b/include/ruby/internal/constant_p.h
@@ -28,6 +28,7 @@
*/
#include "ruby/internal/has/builtin.h"
+/** Wraps (or simulates) `__builtin_constant_p` */
#if RBIMPL_HAS_BUILTIN(__builtin_constant_p)
# define RBIMPL_CONSTANT_P(expr) __builtin_constant_p(expr)
#else