This commit is contained in:
Михаил Капелько
2024-06-07 22:21:32 +03:00
parent db12076b45
commit ef35a82052
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ std::string s(const char *str) {
return std::string(str); return std::string(str);
} }
std::string test_ctx_Controller_executeFunctions_set() { std::string test_ctx_Controller_executeFunctions_registerFunction_set() {
auto c = memory_createContext(); auto c = memory_createContext();
ctx_Controller<memory_Context> ctrl(c); ctx_Controller<memory_Context> ctrl(c);
// Disable automatic invocation of executeFunctions. // Disable automatic invocation of executeFunctions.

View File

@@ -3,7 +3,7 @@
#ifndef ctx_test_HEADER #ifndef ctx_test_HEADER
#define 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_processQueue();
std::string test_ctx_Controller_registerFieldCallback_match(); std::string test_ctx_Controller_registerFieldCallback_match();
std::string test_ctx_Controller_registerFieldCallback_mismatch(); std::string test_ctx_Controller_registerFieldCallback_mismatch();

View File

@@ -2,7 +2,7 @@ from ctx import *
from memory import * from memory import *
from memory_Context import * from memory_Context import *
def ctx_test_Controller_executeFunctions_set( def ctx_test_Controller_executeFunctions_registerFunction_set(
) -> str: ) -> str:
c = memory_createContext() c = memory_createContext()
ctrl = ctx_Controller(c) ctrl = ctx_Controller(c)