From f24037d23fb1f36f397ddc0447e7b5f99b1cda5a Mon Sep 17 00:00:00 2001 From: executorOfZero <66232352+executorOfZero@users.noreply.github.com> Date: Thu, 8 Jul 2021 10:55:38 +0800 Subject: [PATCH] Update func_pointer.cpp --- basic_content/func_pointer/func_pointer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic_content/func_pointer/func_pointer.cpp b/basic_content/func_pointer/func_pointer.cpp index 60f8bb9..4fceb3c 100644 --- a/basic_content/func_pointer/func_pointer.cpp +++ b/basic_content/func_pointer/func_pointer.cpp @@ -10,7 +10,7 @@ using namespace std; /** - * @brief 定义了一个变量pFun,这个变量是个指针,指向返回值和参数都是空的函数的指针! + * @brief 定义了一个变量pFun,这个变量是个指针,指向返回值为空和参数为int的函数的指针! */ void (*pFun)(int);