From ef35a82052c27b6c3e3f678424e32f627fe29c6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B8=D1=85=D0=B0=D0=B8=D0=BB=20=D0=9A=D0=B0=D0=BF?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C=D0=BA=D0=BE?= Date: Fri, 7 Jun 2024 22:21:32 +0300 Subject: [PATCH] d --- v4/ctx_test2.cpp | 2 +- v4/ctx_test2.h | 2 +- v4/ctx_test2.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/v4/ctx_test2.cpp b/v4/ctx_test2.cpp index d1ca931..67cc471 100644 --- a/v4/ctx_test2.cpp +++ b/v4/ctx_test2.cpp @@ -7,7 +7,7 @@ std::string s(const char *str) { return std::string(str); } -std::string test_ctx_Controller_executeFunctions_set() { +std::string test_ctx_Controller_executeFunctions_registerFunction_set() { auto c = memory_createContext(); ctx_Controller ctrl(c); // Disable automatic invocation of executeFunctions. diff --git a/v4/ctx_test2.h b/v4/ctx_test2.h index 85a7114..4e372a0 100644 --- a/v4/ctx_test2.h +++ b/v4/ctx_test2.h @@ -3,7 +3,7 @@ #ifndef ctx_test_HEADER #define ctx_test_HEADER -std::string test_ctx_Controller_executeFunctions_set(); +std::string test_ctx_Controller_executeFunctions_registerFunction_set(); std::string test_ctx_Controller_processQueue(); std::string test_ctx_Controller_registerFieldCallback_match(); std::string test_ctx_Controller_registerFieldCallback_mismatch(); diff --git a/v4/ctx_test2.py b/v4/ctx_test2.py index cde26fd..74720c8 100644 --- a/v4/ctx_test2.py +++ b/v4/ctx_test2.py @@ -2,7 +2,7 @@ from ctx import * from memory import * from memory_Context import * -def ctx_test_Controller_executeFunctions_set( +def ctx_test_Controller_executeFunctions_registerFunction_set( ) -> str: c = memory_createContext() ctrl = ctx_Controller(c)