CodeSpell

This commit is contained in:
Max Seidenstücker
2026-02-06 16:20:00 +01:00
committed by Özkan Sezer
parent 8b53b77058
commit d870911202
34 changed files with 63 additions and 63 deletions

View File

@@ -11,7 +11,7 @@ cmake -S my-project \
-DCMAKE_PREFIX_PATH=/usr/opt/android-sdks \
-DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK_HOME/build/cmake/android.toolchain.cmake \
-B build-arm64 -DANDROID_ABI=arm64-v8a \
-DCMAKE_BUILD_TYPE=Releaase
-DCMAKE_BUILD_TYPE=Release
cmake --build build-arm64
```
"""

View File

@@ -1362,7 +1362,7 @@ while (my $d = readdir(DH)) {
if (($p eq 'void') || ($p eq '')) {
die("Void parameter in a function with multiple params?! ('$sym' in '$incpath/$dent')") if (scalar(@params) != 1);
} elsif ($p eq '...') {
die("Mutiple '...' params?! ('$sym' in '$incpath/$dent')") if ($dotdotdot);
die("Multiple '...' params?! ('$sym' in '$incpath/$dent')") if ($dotdotdot);
$dotdotdot = 1;
push @paraminfo, '...';
push @paraminfo, '...';
@@ -1673,7 +1673,7 @@ while (my $d = readdir(DH)) {
if ($has_doxygen) {
print STDERR "WARNING: Symbol '$sym' appears to be documented in multiple locations. Only keeping the first one we saw!\n";
}
push @contents, join("\n", @decllines) if (scalar(@decllines) > 0); # just put the existing declation in as-is.
push @contents, join("\n", @decllines) if (scalar(@decllines) > 0); # just put the existing declaration in as-is.
}
}