-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
950fd24
commit 53bdb56
Showing
5 changed files
with
32 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
#include "mk_lang_constexpr.h" | ||
#include "mk_lang_jumbo.h" | ||
#include "mk_lang_noexcept.h" | ||
#include "mk_lang_static_param.h" | ||
#include "mk_lang_types.h" | ||
|
||
|
||
#include "mk_lang_num_longdivmod_inl_defd.h" | ||
|
||
|
||
mk_lang_constexpr mk_lang_jumbo mk_lang_types_void_t mk_lang_num_longdivmod_inl_defd_divmod4(mk_lang_num_longdivmod_inl_defd_tn1_pct const a, mk_lang_num_longdivmod_inl_defd_tn1_pct const b, mk_lang_num_longdivmod_inl_defd_tn1_pt const c, mk_lang_num_longdivmod_inl_defd_tn1_pt const d) mk_lang_noexcept; | ||
mk_lang_constexpr mk_lang_jumbo mk_lang_types_void_t mk_lang_num_longdivmod_inl_defd_divmod4(mk_lang_static_param(mk_lang_num_longdivmod_inl_defd_tn1_ct, a, mk_lang_num_longdivmod_inl_defd_lena), mk_lang_static_param(mk_lang_num_longdivmod_inl_defd_tn1_ct, b, mk_lang_num_longdivmod_inl_defd_lenb), mk_lang_static_param(mk_lang_num_longdivmod_inl_defd_tn1_t, c, mk_lang_num_longdivmod_inl_defd_lenc), mk_lang_static_param(mk_lang_num_longdivmod_inl_defd_tn1_t, d, mk_lang_num_longdivmod_inl_defd_lend)) mk_lang_noexcept; | ||
|
||
|
||
#include "mk_lang_num_longdivmod_inl_defu.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#ifndef mk_include_guard_mk_lang_static_param | ||
#define mk_include_guard_mk_lang_static_param | ||
|
||
|
||
#include "mk_lang_version.h" | ||
|
||
|
||
#if !defined __cplusplus && mk_lang_version_at_least_c_99 | ||
#define mk_lang_static_param(type, name, count) type const name[static count] | ||
#else | ||
#define mk_lang_static_param(type, name, count) type* const name | ||
#endif | ||
|
||
|
||
#endif |