summaryrefslogtreecommitdiffstats
path: root/libdimension/inline.c
diff options
context:
space:
mode:
Diffstat (limited to 'libdimension/inline.c')
-rw-r--r--libdimension/inline.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libdimension/inline.c b/libdimension/inline.c
index 6b8b29d..ae175e0 100644
--- a/libdimension/inline.c
+++ b/libdimension/inline.c
@@ -23,20 +23,20 @@
* Emit definitions of inline functions, if necessary.
*/
-/* Set DMNSN_INLINE to produce definitions of inline functions, emitted here,
- if needed */
+// Set DMNSN_INLINE to produce definitions of inline functions, emitted here,
+// if needed
#ifdef __cplusplus
- /* C++ inline semantics */
+ // C++ inline semantics
#define DMNSN_INLINE inline
#elif __STDC_VERSION__ >= 199901L
- /* C99 inline semantics */
+ // C99 inline semantics
#define DMNSN_INLINE
#elif defined(__GNUC__)
- /* GCC inline semantics */
+ // GCC inline semantics
#define DMNSN_INLINE __inline__
#else
- /* Unknown C - mark functions static and hope the compiler is smart enough
- to inline them */
+ // Unknown C - mark functions static and hope the compiler is smart enough to
+ // inline them
#define DMNSN_INLINE static
#endif