9

我有这个函数头:

template <
    bool src_alpha,
    int sbpp, int dbpp,
    typename T1, typename T2,
    Color (*getFunc)(T1 data, Uint8* addr),
    void (*putFunc)(T2 data, Uint8* addr, Color c)
>
static void OperateOnSurfaces(T1 data1, T2 data2, SDL_Surface * bmpDest, SDL_Surface * bmpSrc, SDL_Rect& rDest, SDL_Rect& rSrc)

这就是我使用它的方式:

OperateOnSurfaces<
    true,
    32, 32,
    SDL_PixelFormat*, SDL_PixelFormat*,
    GetPixel<true,32>, PutPixel<true,true,32> >(
    bmpSrc->format, bmpDest->format,
    bmpDest, bmpSrc, rDest, rSrc);

这是GetPixelPutPixel

template<bool alpha, int bpp>
static Color GetPixel(SDL_PixelFormat* format, Uint8* addr) { /* .. */ }

template<bool alpha, bool alphablend, int bpp>
static void PutPixel(SDL_PixelFormat* format, Uint8* addr, Color col) { /* .. */ }

我得到这个错误:

note: candidate template ignored: invalid explicitly-specified argument for template parameter 'getFunc' [3]

为什么?

4

1 回答 1

7

我怀疑所有这些功能都是免费功能。当您声明一个自由函数static时,它会获得内部链接。在 C++03 中,非类型模板参数必须具有外部链接†</sup>。只需删除static前面的功能。

template <
    bool src_alpha,
    int sbpp, int dbpp,
    typename T1, typename T2,
    char (*getFunc)(T1 data, unsigned* addr),
    void (*putFunc)(T2 data, unsigned* addr, char c)
>
void OperateOnSurfaces(){}

template<bool alpha, int bpp>
char GetPixel(void* format, unsigned* addr);

template<bool alpha, bool alphablend, int bpp>
void PutPixel(void* format, unsigned* addr, char col);

int main(){
    OperateOnSurfaces<
        true,
        32, 32,
        void*, void*,
        GetPixel<true,32>, PutPixel<true,true,32> >();
}

这个修改后的示例在​​ C++98 和 C++11 模式下的 Clang 3.1 和 GCc 4.4.5 上编译良好,没有警告。如果我离开了static,我会收到一个类似的错误 + 注意你在 Clang 中得到的内容,并且 GCC 会吐出重要信息(向右滚动,“没有外部链接”):

15:02:38 $ g++ t.cpp
t.cpp: In function ‘int main()’:
t.cpp:21: error: ‘GetPixel<true, 32>’ is not a valid template argument for type ‘char (*)(void*, unsigned int*)’ because function ‘char GetPixel(void*, unsigned int*) [with bool alpha = true, int bpp = 32]’ has not external linkage
t.cpp:21: error: ‘PutPixel<true, true, 32>’ is not a valid template argument for type ‘void (*)(void*, unsigned int*, char)’ because function ‘void PutPixel(void*, unsigned int*, char) [with bool alpha = true, bool alphablend = true, int bpp = 32]’ has not external linkage
t.cpp:21: error: no matching function for call to ‘OperateOnSurfaces()’

(C++03) §14.3.2 [temp.arg.nontype] p1

非类型、非模板模板参数模板参数应为以下之一:

  • [...]

  • 具有外部链接的对象或函数的地址[...]

  • [...]

请注意,C++11 更改了措辞,现在也允许具有内部链接的函数:

(C++11) §14.3.2 [temp.arg.nontype] p1

非类型、非模板模板参数模板参数应为以下之一:

  • [...]

  • 一个常量表达式 (5.19),它指定具有静态存储持续时间和外部或内部链接的对象的地址或具有外部或内部链接的函数[...]

  • [...]

Clang 目前在 C++11 模式下不遵守这一点,它仍然只允许具有外部链接的函数。

于 2011-12-25T14:07:11.310 回答