• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Static function
2 namespace {
StaticFunction(int a)3 static long StaticFunction(int a)
4 {
5   return 2;
6 }
7 }
8 
9 // Inlined function
InlinedFunction(long a)10 static inline int InlinedFunction(long a) { return 10; }
11 
FunctionCall()12 void FunctionCall()
13 {
14   StaticFunction(1);
15   InlinedFunction(1);
16 }
17