mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-11 05:04:58 -05:00
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.
15 lines
311 B
C++
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
|