From 8769a269c89a51a0ab851bb6369ffe47c7874b9d Mon Sep 17 00:00:00 2001 From: root Date: Sat, 23 Aug 2025 20:54:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BB=A3=E7=A0=81=E4=B8=AD?= =?UTF-8?q?=E6=B3=A8=E9=87=8A=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- C++.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C++.md b/C++.md index f2363c9..8b3c9e0 100644 --- a/C++.md +++ b/C++.md @@ -394,9 +394,9 @@ int main() { int b = 5; { - //g++编译报错 + //gcc编译报错 static int c = b; - //gcc编译不报错 + //g++编译不报错 static int c = b; } return 0;