From 02d6ffa60b9d2aa40359b61a59fb5185d41b1fe6 Mon Sep 17 00:00:00 2001 From: Francis <455954986@qq.com> Date: Sun, 10 Apr 2022 17:46:45 +0800 Subject: [PATCH] Update README.md --- basic_content/decltype/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic_content/decltype/README.md b/basic_content/decltype/README.md index 02d38f4..ac214b3 100644 --- a/basic_content/decltype/README.md +++ b/basic_content/decltype/README.md @@ -99,7 +99,7 @@ int && RvalRef(); const bool Func(int); //规则一:推导为其类型 -decltype (arr) var1; //int 标记符表达式 +decltype (arr) var1; //int[] 标记符表达式 decltype (ptr) var2;//int * 标记符表达式