You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -470,12 +470,12 @@ The brief description for constructors should be "Constructor", and the brief de
470
470
/**
471
471
* @brief Constructor
472
472
*/
473
-
StreamBase();
473
+
IStream();
474
474
475
475
/**
476
476
* @brief Destructor
477
477
*/
478
-
virtual ~StreamBase();
478
+
virtual ~IStream();
479
479
```
480
480
481
481
If there are many constructor overloads for purposes such as moving/copying, feel free to specify the constructor "type" in the Doxygen detailed description:
0 commit comments