Fix build warnings

Fix Docker build error.
This commit is contained in:
Tindy X 2020-08-26 17:55:43 +08:00
parent 2abbd901e4
commit 17628b4a30
No known key found for this signature in database
GPG Key ID: C6AD413169968D58
2 changed files with 3 additions and 3 deletions

View File

@ -14,10 +14,9 @@ jobs:
- name: Set up docker buildx - name: Set up docker buildx
id: buildx id: buildx
uses: crazy-max/ghaction-docker-buildx@v2 uses: crazy-max/ghaction-docker-buildx@v3
with: with:
buildx-version: latest buildx-version: latest
skip-cache: false
qemu-version: latest qemu-version: latest
- name: Docker login - name: Docker login

View File

@ -1592,6 +1592,7 @@ public:
}; };
struct FunctionData { struct FunctionData {
explicit FunctionData(const Operation &op, const CallbackFunction &cb = CallbackFunction{}) : operation(op), callback(cb) {}
const Operation operation; const Operation operation;
const CallbackFunction callback; const CallbackFunction callback;
}; };
@ -1650,7 +1651,7 @@ public:
} }
} }
return { Operation::None }; return FunctionData { Operation::None };
} }
}; };