unique var names in example

This commit is contained in:
Thibault Kruse 2016-08-11 18:32:11 +02:00
parent 46a26976ba
commit bcca1488e8

View File

@ -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