Merge pull request #3548 from dbartol/github/codeql-c-analysis-team/69

C++: Fix duplicate result types
This commit is contained in:
Robert Marsh
2020-05-26 09:44:12 -07:00
committed by GitHub

View File

@@ -362,7 +362,7 @@ CppType getTypeForPRValueOrUnknown(Type type) {
/**
* Gets the `CppType` that represents a glvalue of type `type`.
*/
CppType getTypeForGLValue(Type type) { result.hasType(type, true) }
CppGLValueAddressType getTypeForGLValue(Type type) { result.hasType(type, true) }
/**
* Gets the `CppType` that represents a prvalue of type `int`.