~ubuntu-branches/ubuntu/trusty/cmake3/trusty-updates

« back to all changes in this revision

Viewing changes to Tests/CompileFeatures/c_variadic_macros.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2017-02-23 17:55:24 UTC
  • Revision ID: package-import@ubuntu.com-20170223175524-5nh7s4pu97fsa0t7
Tags: upstream-3.5.1
ImportĀ upstreamĀ versionĀ 3.5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
int someFunc(int i1, char c, int i2)
 
3
{
 
4
  (void)i1;
 
5
  (void)c;
 
6
  (void)i2;
 
7
  return 0;
 
8
}
 
9
 
 
10
#define FUNC_WRAPPER(...) someFunc(__VA_ARGS__)
 
11
 
 
12
void otherFunc()
 
13
{
 
14
  FUNC_WRAPPER(42, 'a', 7);
 
15
}