File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
cpp/ql/src/semmle/code/cpp Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ abstract class DeclarationEntry extends Locatable {
303
303
* public:
304
304
* ...
305
305
* };
306
- *
306
+ *
307
307
* void myFunction() {
308
308
* // ...
309
309
* }
@@ -449,7 +449,7 @@ abstract class AccessHolder extends Declaration {
449
449
* public:
450
450
* friend void friendFunction();
451
451
* };
452
- *
452
+ *
453
453
* void friendFunction() {
454
454
* // ...
455
455
* }
Original file line number Diff line number Diff line change @@ -175,14 +175,14 @@ class FieldAccess extends VariableAccess {
175
175
* These typically take the form `obj->field`. Another case is a field access
176
176
* with an implicit `this->` qualifier, which is often a `PointerFieldAccess`
177
177
* (but see also `ImplicitThisFieldAccess`).
178
- *
178
+ *
179
179
* For example the accesses to `x` and `y` in `myMethod` in the following code
180
180
* are each a `PointerFieldAccess`:
181
181
* ```
182
182
* class MyClass {
183
183
* public:
184
184
* void myMethod(MyClass *other) {
185
- other->x = y;
185
+ * other->x = y;
186
186
* }
187
187
*
188
188
* int x, y;
You can’t perform that action at this time.
0 commit comments