Cleanup: remove MF prefix from some classes in multi-function namespace

This was missing in rBeedcf1876a6651c38d8f4daa2e65d1fb81f77c5d.
This commit is contained in:
2023-01-14 15:42:52 +01:00
parent 8625495b1c
commit 50980981e3
41 changed files with 93 additions and 95 deletions

View File

@@ -19,7 +19,7 @@ enum class ParamFlag {
None = 0,
/**
* If set, the multi-function parameter can be accessed using
* #MFParams::uninitialized_single_output_if_required which can result in better performance
* #Params::uninitialized_single_output_if_required which can result in better performance
* because the output does not have to be computed when it is not needed.
*/
SupportsUnusedOutput = 1 << 0,
@@ -142,7 +142,7 @@ class SignatureBuilder {
}
template<ParamCategory Category, typename T>
void add(MFParamTag<Category, T> /* tag */, const char *name)
void add(ParamTag<Category, T> /* tag */, const char *name)
{
switch (Category) {
case ParamCategory::SingleInput: