HackStudio+LanguageServers/Cpp: Show scope of symbols in Locator

This commit is contained in:
Itamar
2021-03-23 12:32:45 +02:00
committed by Andreas Kling
parent 6054a418e5
commit 84e34d76d8
10 changed files with 52 additions and 13 deletions

View File

@@ -1,6 +1,8 @@
#include "other.h"
#include <stdio.h>
namespace MyNamespace {
int func()
{
int x = 1;
@@ -12,3 +14,5 @@ int func()
printf("x+y: %d\n", x + y);
return x + y;
}
}