関数ポインターの配列から関数ポインターをテンプレート引数として渡したいのですが。Intellisenseが何かがおかしいと文句を言うのに、私のコードはMSVCを使用してコンパイルしているようです。gccとclangはどちらもコードのコンパイルに失敗します。
次の例を考えてみます。
static void test() {}
using FunctionPointer = void(*)();
static constexpr FunctionPointer functions[] = { test };
template <FunctionPointer function>
static void wrapper_function()
{
function();
}
int main()
{
test(); // OK
functions[0](); // OK
wrapper_function<test>(); // OK
wrapper_function<functions[0]>(); // Error?
}
MSVCはコードをコンパイルしますが、Intellisenseは次のエラーを出します:invalid nontype template argument of type "const FunctionPointer"
gccは次のメッセージでコンパイルに失敗します。
<source>: In function 'int main()':
<source>:19:33: error: no matching function for call to 'wrapper_function<functions[0]>()'
19 | wrapper_function<functions[0]>(); // Error?
| ^
<source>:8:13: note: candidate: 'template<void (* function)()> void wrapper_function()'
8 | static void wrapper_function()
| ^~~~~~~~~~~~~~~~
<source>:8:13: note: template argument deduction/substitution failed:
<source>:19:30: error: '(FunctionPointer)functions[0]' is not a valid template argument for type 'void (*)()'
19 | wrapper_function<functions[0]>(); // Error?
| ~~~~~~~~~~~^
<source>:19:30: note: it must be the address of a function with external linkage
clangは次のメッセージでコンパイルに失敗します。
<source>:19:2: error: no matching function for call to 'wrapper_function'
wrapper_function<functions[0]>(); // Error?
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<source>:8:13: note: candidate template ignored: invalid explicitly-specified argument for template parameter 'function'
static void wrapper_function()
^
1 error generated.
質問:
でwrapper_function<functions[0]>();
有効かどうか?
そうでない場合functions[0]
、テンプレート引数として渡すことができることはありwrapper_function
ますか?私の目標は、コンパイル時に、コンテンツを使用して、関数ポインタの新しい配列を構築すること{ wrapper_function<functions[0]>, ..., wrapper_function<functions[std::size(functions) - 1]> }
です。
wrapper_function<decltype(functions[0])>()
コンパイルもできません。