Skip to content

Commit 9fd9933

Browse files
author
Stefanus Du Toit
committed
N3545 Editorial fix
Add const to the added constexpr function, as constexpr no longer implies const, but did at the time the paper was proposed.
1 parent 86719cb commit 9fd9933

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/utilities.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10111,7 +10111,7 @@
1011110111
typedef T value_type;
1011210112
typedef integral_constant<T,v> type;
1011310113
constexpr operator value_type() const { return value; }
10114-
constexpr value_type operator()() { return value; }
10114+
constexpr value_type operator()() const { return value; }
1011510115
};
1011610116
typedef integral_constant<bool, true> true_type;
1011710117
typedef integral_constant<bool, false> false_type;

0 commit comments

Comments
 (0)