CPP: Add a reverse-link for consistency between Field and MemberVariable.

This commit is contained in:
Geoffrey White
2019-08-20 15:38:02 +01:00
parent f045035f5d
commit 675e1cc349

View File

@@ -12,6 +12,9 @@ import semmle.code.cpp.exprs.Access
* static int s; * static int s;
* }; * };
* ``` * ```
*
* This does not include static member variables in C++. To include static member
* variables, use `MemberVariable` instead of `Field`.
*/ */
class Field extends MemberVariable { class Field extends MemberVariable {