whitespace

This commit is contained in:
Axel Kohlmeyer
2023-05-12 15:13:29 -04:00
parent b54d39adf9
commit 0abb217d59

View File

@ -123,7 +123,7 @@ Miscellaneous standards (varied)
.. code-block:: c++
// don't write destructors for A or B like this
class A : protected Pointers {
public:
A();
@ -137,7 +137,7 @@ Miscellaneous standards (varied)
};
// instead, let the compiler create the implicit default destructor by not writing it
class A : protected Pointers {
public:
A();