File tree 2 files changed +4
-4
lines changed
cpp/common/src/codingstandards/cpp
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -294,9 +294,9 @@ class StreamExtractionOperator extends Function {
294
294
then this .getNumberOfParameters ( ) = 1
295
295
else (
296
296
this .getNumberOfParameters ( ) = 2 and
297
- this .getParameter ( 0 ) .getType ( ) instanceof IStream
297
+ this .getParameter ( 0 ) .getType ( ) instanceof IStream
298
298
)
299
299
) and
300
- this .getType ( ) instanceof IStream
300
+ this .getType ( ) instanceof IStream
301
301
}
302
302
}
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ class FileStream extends ClassTemplateInstantiation {
25
25
* A `basic_istream` like `std::istream`
26
26
*/
27
27
class IStream extends Type {
28
- IStream ( ) {
28
+ IStream ( ) {
29
29
this .( Class ) .getQualifiedName ( ) .matches ( "std::basic\\_istream%" )
30
30
or
31
31
this .getUnspecifiedType ( ) instanceof IStream
@@ -40,7 +40,7 @@ class IStream extends Type {
40
40
* A `basic_ostream` like `std::ostream`
41
41
*/
42
42
class OStream extends Type {
43
- OStream ( ) {
43
+ OStream ( ) {
44
44
this .( Class ) .getQualifiedName ( ) .matches ( "std::basic\\_ostream%" )
45
45
or
46
46
this .getUnspecifiedType ( ) instanceof OStream
You can’t perform that action at this time.
0 commit comments