This website requires JavaScript.
Explore
Help
Sign In
Zengtudor
/
ccls
Watch
1
Star
0
Fork
0
You've already forked ccls
mirror of
https://github.com/MaskRay/ccls.git
synced
2024-11-22 23:55:08 +00:00
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
f4e16067b7
ccls
/
foo
/
b.cc
12 lines
97 B
C++
Raw
Normal View
History
Unescape
Escape
Every function usage is now considered a call of that function. This means we will now report function calls that happen in the global scope (previously, those would only show up for find all refs).
2017-04-13 07:47:47 +00:00
namespace
{
struct
Foo2
{
virtual
void
foobar
(
)
=
0
;
}
;
Misc
2017-04-15 04:56:51 +00:00
void
x
(
)
{
int
bar
=
3
;
bar
+
+
;
}
Every function usage is now considered a call of that function. This means we will now report function calls that happen in the global scope (previously, those would only show up for find all refs).
2017-04-13 07:47:47 +00:00
}
Reference in New Issue
Copy Permalink