File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -719,7 +719,7 @@ namespace classdesc
719
719
callFunction (const string& remainder, const REST_PROCESS_BUFFER& arguments, F f)
720
720
{
721
721
JSONBuffer argBuf (arguments);
722
- auto & r=functional::callOnBuffer (argBuf,f);
722
+ auto & r=functional::CallOnBuffer (argBuf,f)( );
723
723
if (remainder.empty ())
724
724
{
725
725
// if there are arguments left over, assign the first of the
@@ -757,7 +757,7 @@ namespace classdesc
757
757
callFunction (const string& remainder, const REST_PROCESS_BUFFER& arguments, F f)
758
758
{
759
759
JSONBuffer argBuf (arguments);
760
- auto r=functional::callOnBuffer (argBuf,f);
760
+ auto r=functional::CallOnBuffer (argBuf,f)( );
761
761
if (remainder.empty ())
762
762
{
763
763
REST_PROCESS_BUFFER rj;
@@ -776,7 +776,7 @@ namespace classdesc
776
776
callFunction (const string& remainder, const REST_PROCESS_BUFFER& arguments, F f)
777
777
{
778
778
JSONBuffer argBuf (arguments);
779
- functional::callOnBuffer (argBuf,f);
779
+ functional::CallOnBuffer (argBuf,f)( );
780
780
return {};
781
781
}
782
782
You can’t perform that action at this time.
0 commit comments