| f8d308fa | 23-Feb-2024 |
Jed Brown <jed@jedbrown.org> |
internal: const for source paths
Add const to CeedQFunctionLoadSourceToBuffer output argument. If we had Result, this would look like
let const source_buffer = CeedQFunctionLoadSourceToBuffer()?;
internal: const for source paths
Add const to CeedQFunctionLoadSourceToBuffer output argument. If we had Result, this would look like
let const source_buffer = CeedQFunctionLoadSourceToBuffer()?;
The caller is free to cast in the const when passing the output variable if they want this semantic:
let mut source_buffer = CeedQFunctionLoadSourceToBuffer()?;
show more ...
|