repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git]
/
clang-tools-extra
/
test
/
modularize
/
Inputs
/
SomeDecls.h
blob
8892b650c1812328a92f2326ac67758579a94161
1
// Declare a couple of functions - no modules problems.
2
3
void
FuncOne
();
4
5
int
FuncTwo
(
int
arg
);
6
7
void
FuncOverload
(
int
arg
) {}
8
void
FuncOverload
(
char
*
arg
) {}
9
10
namespace
Namespace1
{
11
void
FuncNameSpace
() {}
12
}
13
14
namespace
Namespace2
{
15
void
FuncNameSpace
() {}
16
}