We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 056c48d commit 82abc1eCopy full SHA for 82abc1e
.github/workflows/android.yml
@@ -28,5 +28,5 @@ jobs:
28
unzip -q -o ./android-ndk-r21-linux-x86_64.zip
29
- name: Tests
30
run: |
31
- xmake f -a arm64 -p android --ndk=`pwd`/android-ndk-r21
+ xmake f -a arm64-v8a -p android --ndk=`pwd`/android-ndk-r21
32
xmake -a
include/co/json.h
@@ -520,4 +520,6 @@ namespace co {
520
using Json = json::Json;
521
} // co
522
523
-inline fastream& operator<<(fastream& fs, const json::Json& x) { return x.dbg(fs); }
+inline fastream& operator<<(fastream& fs, const json::Json& x) {
524
+ return x.dbg(fs);
525
+}
0 commit comments