mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-08 11:35:02 -05:00
chore: Fixing compilation error of the python bindings
This commit is contained in:
@@ -252,9 +252,8 @@ void mlir::concretelang::python::populateCompilerAPISubmodule(
|
||||
[](mlir::concretelang::ClientParameters &clientParameters) {
|
||||
std::vector<bool> result;
|
||||
for (auto input : clientParameters.inputs) {
|
||||
if (input.encryption.hasValue()) {
|
||||
result.push_back(
|
||||
input.encryption.getValue().encoding.isSigned);
|
||||
if (input.encryption.has_value()) {
|
||||
result.push_back(input.encryption.value().encoding.isSigned);
|
||||
} else {
|
||||
result.push_back(true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user