Update cpp/ql/lib/semmle/code/cpp/models/implementations/Iterator.qll

This commit is contained in:
Mathias Vorreiter Pedersen
2024-07-22 16:34:23 +01:00
committed by GitHub
parent 281212a22c
commit c256c87a7e

View File

@@ -93,7 +93,7 @@ private class StdReverseIterator extends Iterator, Class {
}
private class StdIstreamBufIterator extends Iterator, Class {
StdIstreamBufIterator() { this.hasQualifiedName(["std", "bsl"], ["istreambuf_iterator"]) }
StdIstreamBufIterator() { this.hasQualifiedName(["std", "bsl"], "istreambuf_iterator") }
override Type getValueType() { result = this.getTemplateArgument(1).(Type).getUnderlyingType() }
}