unique var names in example

pull/666/head
Thibault Kruse 10 years ago
parent 46a26976ba
commit bcca1488e8

@ -13044,8 +13044,8 @@ Better performance, better compile-time checking, guaranteed compile-time evalua
##### Example
double x = f(2); // possible run-time evaluation
const double x = f(2); // possible run-time evaluation
constexpr double y = f(2); // error unless f(2) can be evaluated at compile time
const double y = f(2); // possible run-time evaluation
constexpr double z = f(2); // error unless f(2) can be evaluated at compile time
##### Note

Loading…
Cancel
Save