Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/P-p-H-d/mlib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Pelissier <Patrick.Pelissier@gmail.com>2023-11-04 21:28:32 +0300
committerPatrick Pelissier <Patrick.Pelissier@gmail.com>2023-11-04 21:28:32 +0300
commite017a90e5cfe9aff29280d622e1992e2ddab6d54 (patch)
tree0529cc1187b9bc660ddfe4da753847518b1077e7
parent58b317b759947b696271b74fb367c068fe48573c (diff)
Fix format
-rw-r--r--m-core.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/m-core.h b/m-core.h
index 94a5a81..e15d507 100644
--- a/m-core.h
+++ b/m-core.h
@@ -3740,11 +3740,11 @@ M_INLINE size_t m_core_cstr_hash(const char str[])
if the method is expanded.
*/
#define M_NO_DEFAULT(...) \
- M_STATIC_ASSERT(false, M_LIB_MISSING_METHOD, \
+ M_STATIC_ASSERT(false, M_LIB_MISSING_METHOD, \
"The requested operator has no method registered in the given OPLIST. ")
#define M_NO_DEF_TYPE \
- M_STATIC_ASSERT(false, M_LIB_MISSING_METHOD, \
+ M_STATIC_ASSERT(false, M_LIB_MISSING_METHOD, \
"The requested operator has no type/subtype/suboplist registered in the given OPLIST. ")
/* Test if the given variable is a basic C variable:
@@ -3810,7 +3810,7 @@ M_INLINE size_t m_core_cstr_hash(const char str[])
M_LIB_TYPE_MISTMACH, \
"The given type " M_AS_STR(type) \
" and the type of the oplist does not match: " \
- M_OPL_AS_STR(oplist) ); \
+ M_OPL_AS_STR(oplist) ); \
} \
, /* End of TYPE */)
#else
@@ -3824,7 +3824,7 @@ M_INLINE size_t m_core_cstr_hash(const char str[])
M_LIB_TYPE_MISTMACH, \
"The given type " M_AS_STR(type) \
" and the type of the oplist does not match: " \
- M_OPL_AS_STR(oplist) ); \
+ M_OPL_AS_STR(oplist) ); \
} \
, /* End of TYPE */)
#endif