Skip to content

Commit e302ad5

Browse files
committed
Fixup: remove trailing whitespace
1 parent 567e3e6 commit e302ad5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/expressions.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6866,9 +6866,9 @@
68666866
int y;
68676867
const int a = std::is_constant_evaluated() ? y : 1; // dynamic initialization to 1
68686868
double z[a]; // ill-formed: "a" is not "usable in constant expressions"
6869-
const int b = std::is_constant_evaluated() ? 2 : y; // static initialization to 2
6869+
const int b = std::is_constant_evaluated() ? 2 : y; // static initialization to 2
68706870
int c = y + (std::is_constant_evaluated() ? 2 : y); // dynamic initialization to y+y
6871-
6871+
68726872
constexpr int f() {
68736873
const int n = std::is_constant_evaluated() ? 13 : 17; // n == 13
68746874
int m = std::is_constant_evaluated() ? 13 : 17; // m might be 13 or 17 (see below)

0 commit comments

Comments
 (0)