This program generates an error:
template <int I>
void sa()
{
static_assert(0,"Hello.");
}
template <>
void sa<0>()
{
}
int main(int argc, char *argv[]) { return 0; }
This program does not:
template <int I>
void sa()
{
static_assert(I != 0,"Hello.");
}
template <>
void sa<0>()
{
}
int main(int argc, char *argv[]) { return 0; }
It makes no sense at all for this to be the case. So I come to the conclusion that g++ 4.5 must be in error if it is triggering the static_assert in an uninstantiated template.
And even more troubling, the following program prints out I == 1.
#include <iostream>
using ::std::cout;
template <int I>
void sa()
{
cout << "I == " << I << '\n';
static_assert(I != 0,"Hello.");
}
template <>
void sa<0>()
{
cout << "I == " << 0 << '\n';
}
int main(int argc, char *argv[]) { sa<1>(); return 0; }
This indicates that there is a serious error with how gcc is handling static_assert.
Edit: Oh, well. My program has a bug in it. It should read I == 0, not I != 0, and if that's changed, it fails to compile just like it ought to.
I? For example, try assertingsizeof I == 0which should always befalse. – Konrad Rudolph Mar 9 '11 at 12:59