Skip to content

Commit c15d625

Browse files
committed
2>&1
1 parent 6087a53 commit c15d625

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/cpp-ci-serial-programs-base.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,17 +145,16 @@ jobs:
145145
# hasArgument(0, hasType(rValueReferenceType(pointee(hasType(hasName("VideoSnapshot")))))),
146146
# unless(hasAncestor(functionDecl(isInline())))
147147
# )
148-
149148
match cxxConstructExpr(
150149
isExpansionInFileMatching("SerialPrograms/"),
151150
hasDeclaration(cxxConstructorDecl(ofClass(hasName("ImageViewRGB32")))),
152-
hasArgument(0, ignoringParenImpCasts(hasType(rValueReferenceType(referentType(hasDeclaration(cxxRecordDecl(hasName("VideoSnapshot")))))))),
151+
hasArgument(0, hasType(rValueReferenceType(pointee(hasType(hasName("VideoSnapshot")))))),
153152
unless(hasAncestor(functionDecl(isInline())))
154153
)
155154
EOF
156155
157156
# files=$(jq -r '.[].file' SerialPrograms/bin/compile_commands.json)
158-
# echo "$files" | xargs --max-args=150 clang-query -p SerialPrograms/bin/ -f query.txt >> clang-query_output.txt
157+
# echo "$files" | xargs --max-args=150 clang-query -p SerialPrograms/bin/ -f query.txt > clang-query_output.txt 2>&1
159158
clang-query -p SerialPrograms/bin/ /home/runner/work/Arduino-Source/Arduino-Source/Arduino-Source/3rdParty/QtWavFile/WavFile.cpp -f query.txt >> clang-query_output.txt
160159
161160
echo "Clang query output (begin)"

0 commit comments

Comments
 (0)