Commit 959def97 authored by Stefan Behnel's avatar Stefan Behnel

forward declaring types is usually *not* necessary

parent 5302d443
...@@ -404,7 +404,8 @@ Forward-declaring extension types ...@@ -404,7 +404,8 @@ Forward-declaring extension types
=================================== ===================================
Extension types can be forward-declared, like :keyword:`struct` and Extension types can be forward-declared, like :keyword:`struct` and
:keyword:`union` types. This is usually necessary. :keyword:`union` types. This is usually not necessary and violates the
DRY principle (Don't Repeat Yourself).
If you are forward-declaring an extension type that has a base class, you must If you are forward-declaring an extension type that has a base class, you must
specify the base class in both the forward declaration and its subsequent specify the base class in both the forward declaration and its subsequent
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment