This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
static_assert problem
- From: "MichaÅ Walenciak" <kicer86 at gmail dot com>
- To: gcc-help at gcc dot gnu dot org
- Date: Sun, 18 Mar 2012 21:33:53 +0100
- Subject: static_assert problem
Hi all
here i have a simple example:
template <int a, int c>
void foo()
{
if (a > 0)
static_assert(c != 0, "fdfd");
}
void bar()
{
foo<0, 0>();
}
when i compile it like: g++ a.cpp -std=c++0x -c
i get:
a.cpp: In function âvoid foo() [with int a = 0, int c = 0]â:
a.cpp:13:12: instantiated from here
a.cpp:6:4: error: static assertion failed: "fdfd"
is it right? 'a' variable is not > 0, so static_assert should not be checked
(imho)
regards
--
MichaÅ Walenciak
gmail.com kicer86
http://kicer.sileman.net.pl
gg: 3729519