File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ check_disallowed() {
133133 dst_obj=$( obj_names " $symbol " " ${temp_dir} /${dst} _exports.txt" )
134134 while read src_obj; do
135135 if ! check_suppress " $src_obj " " $dst_obj " " $symbol " ; then
136- echo " Error: $src_obj depends on $dst_obj symbol '$( c++filt " $symbol " ) ', can suppess with:"
136+ echo " Error: $src_obj depends on $dst_obj symbol '$( c++filt " $symbol " ) ', can suppress with:"
137137 echo " SUPPRESS[\" $src_obj $dst_obj $symbol \" ]=1"
138138 result=1
139139 fi
@@ -145,7 +145,7 @@ check_disallowed() {
145145# Declare array to track errors which were suppressed.
146146declare -A SUPPRESSED
147147
148- # Return whether error should be suppressed and record suppresssion in
148+ # Return whether error should be suppressed and record suppression in
149149# SUPPRESSED array.
150150check_suppress () {
151151 local src_obj=" $1 "
@@ -161,7 +161,7 @@ check_suppress() {
161161 return 1
162162}
163163
164- # Warn about error which were supposed to be suppress , but were not encountered.
164+ # Warn about error which were supposed to be suppressed , but were not encountered.
165165check_not_suppressed () {
166166 for suppress in " ${! SUPPRESS[@]} " ; do
167167 if [[ ! -v SUPPRESSED[$suppress ] ]]; then
You can’t perform that action at this time.
0 commit comments