File tree 1 file changed +33
-0
lines changed
1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,39 @@ change; *not* as part of other modifications.
37
37
* No trailing white space.
38
38
* Maximum line length 110 characters.
39
39
40
+ ## Comments
41
+
42
+ * In general, comment only what is not obvious from the code.
43
+ * APIs intended to be implemented by components independent of the API
44
+ itself should be documented properly. Use ` include/maxscale/filter.hh `
45
+ and ` include/maxscale/router.hh ` as example.
46
+ * On a particular line, the number of characters in documenting text should
47
+ not exceed 80, for ease of reading. When counting the characters, any
48
+ prepending code or space, due to indentation, is not included. The hard
49
+ line length limit of 110 still applies.
50
+
51
+ ```
52
+ /*
53
+ * Text consisting of 33 characters.
54
+ */
55
+ struct S
56
+ {
57
+ int field; // Text consisting of 33 characters.
58
+ };
59
+
60
+ void f()
61
+ {
62
+ if (this)
63
+ {
64
+ if (that)
65
+ {
66
+ // Text consisting of 33 characters.
67
+ ...
68
+ }
69
+ }
70
+ }
71
+ ```
72
+
40
73
## Indentation Style
41
74
42
75
We follow the
You can’t perform that action at this time.
0 commit comments