Add back-reference to changes file

This commit is contained in:
William S Fulton 2019-02-18 19:28:35 +00:00
commit be9d736597
4 changed files with 12 additions and 3 deletions

View file

@ -8295,7 +8295,7 @@ Consider the following C++ code:
<pre>
struct Wheel {
int size;
Wheel(int sz) : size(sz) {}
Wheel(int sz = 0) : size(sz) {}
};
class Bike {