У меня есть проблема, когда я пытаюсь вставить функцию друга шаблона класса в boost::function
:
#include <boost/function.hpp>
template <int N>
struct Vec{
friend
double dot(Vec, Vec){}
};
template class Vec<2>; //Force multiple instantiations
template class Vec<3>;
int main()
{
boost::function<double (Vec<2>, Vec<2>)> func = dot;
double (*func1)(Vec<2>, Vec<2>) = dot;
}
Ни одна из двух строк в main
не скомпилируется.Во-первых, GCC жалуется:
error: conversion from '<unresolved overloaded function type>' to non-scalar type 'boost::function<double(Vec<2>, Vec<2>)>' requested
Ошибка для второй строки мне кажется еще более запутанной:
error: no matches converting function 'dot' to type 'double (*)(struct Vec<2>, struct Vec<2>)'
testtmpl.C:6:15: error: candidates are: double dot(Vec<2>, Vec<2>)
testtmpl.C:6:15: error: double dot(Vec<3>, Vec<3>)
Я немного запутался, так как не знаюпонять, почему double dot(Vec<2>, Vec<2>)
не совпадает.
Есть идеи, что здесь происходит?