scripted-diff: Use ser params operator

-BEGIN VERIFY SCRIPT-
 sed -i 's|WithParams(\([a-zA-Z:._]\+\), |\1(|g' $( git grep -l WithParams )
-END VERIFY SCRIPT-
This commit is contained in:
MarcoFalke
2023-09-17 13:59:15 +02:00
parent fae9054793
commit ffffb4af83
6 changed files with 37 additions and 37 deletions

View File

@@ -216,7 +216,7 @@ const Out& AsBase(const In& x)
* which would then be invoked as
* READWRITE(WithParams(BarParameter{...}, Using<FooFormatter>(obj.foo)))
*
* WithParams(parameter, obj) can be invoked anywhere in the call stack; it is
* parameter(obj) can be invoked anywhere in the call stack; it is
* passed down recursively into all serialization code, until another
* WithParams overrides it.
*