I have 4 int constants :

const int a1 = 1024;
const int a2 = 768;
const int b1 = 640;
const int b2 = 480;

and I want to statically check that they have the same ratio. To statically check, I am using BOOST_STATIC_ASSERT, but it doesn't support expressions.

I tried this :

BOOST_STATIC_ASSERT( 1e-5 > std::abs( (double)a1 / (double)a2 - (double)b1 / (double)b2 ) );

but this produces next compiling errors :

error: floating-point literal cannot appear in a constant-expression
error: 'std::abs' cannot appear in a constant-expression
error: a cast to a type other than an integral or enumeration type cannot appear in a constant-expression
error: a cast to a type other than an integral or enumeration type cannot appear in a constant-expression
error: a cast to a type other than an integral or enumeration type cannot appear in a constant-expression
error: a cast to a type other than an integral or enumeration type cannot appear in a constant-expression
error: a function call cannot appear in a constant-expression
error: template argument 1 is invalid

How to fix the above line in order to make the compilation pass?

PS I do not have access to c++0x features and std::static_assert, that is why I am using boost's static assert.

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted
BOOST_STATIC_ASSERT(a1 * b2 == a2 * b1);
link|improve this answer
+1: This is mathematically better. But the question is still, how to solve his compilation error. – Martijn Courteaux Jun 8 '11 at 13:38
3  
@Martijn I think above is the only way. See Konrad's response – BЈовић Jun 8 '11 at 13:39
feedback

How to fix the above line in order to make the compilation pass?

Without resorting to user763305’s elegant rewrite of the equation, you cannot. The compiler is right: “floating-point literal cannot appear in a constant-expression”. Furthermore, you also cannot call functions (std::abs) in constant expressions.

C++0x will solve this using constexpr.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.