File: pragma_push_pop_macro.cc

package info (click to toggle)
libsigc%2B%2B-2.0 2.12.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,432 kB
  • sloc: cpp: 4,132; xml: 339; python: 196; makefile: 192; sh: 5
file content (38 lines) | stat: -rw-r--r-- 603 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Configuration-time test program, used in Meson build.
// Corresponds to the M4 macro SIGC_CXX_PRAGMA_PUSH_POP_MACRO.

#define BEGIN {
#define END   }
#pragma push_macro("BEGIN")
#pragma push_macro("END")
#undef BEGIN
#undef END

// BEGIN and END are not prepreprocessor macros
struct Test1
{
  int BEGIN;
  double END;
};

#pragma pop_macro("BEGIN")
#pragma pop_macro("END")

// BEGIN and END are prepreprocessor macros
struct Test2
BEGIN
  int i;
  double d;
END;

void func1(Test1& x);
void func2(Test2& x);

int main()
{
  Test1 test1;
  Test2 test2;
  func1(test1);
  func2(test2);
  return 0;
}