Files
concrete/compiler/include/zamalang/Support/V0Parameters.h
Andi Drebes ddebedd1d6 refactor(compiler): Make function getV0Parameter return a pointer to a constant
The function `getV0Parameter()` returns a pointer to a static array,
which is not intended to be mutable. Reflect this in the return type
of the function.
2021-09-28 11:35:58 +02:00

15 lines
311 B
C++

#ifndef ZAMALANG_SUPPORT_V0Parameter_H_
#define ZAMALANG_SUPPORT_V0Parameter_H_
#include "zamalang/Conversion/Utils/GlobalFHEContext.h"
#include <cstddef>
namespace mlir {
namespace zamalang {
const V0Parameter *getV0Parameter(V0FHEConstraint constraint);
} // namespace zamalang
} // namespace mlir
#endif