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

@ -5452,7 +5452,7 @@ Consider the following C++ code:
#include <iostream>
struct Wheel {
int size;
Wheel(int sz) : size(sz) {}
Wheel(int sz = 0) : size(sz) {}
~Wheel() { std::cout << "~Wheel" << std::endl; }
};