diff options
author | bloodstalker <thabogre@gmail.com> | 2020-03-20 17:01:19 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2020-03-20 17:01:19 +0000 |
commit | 029933103f199a618ee94e080a4b8fe1243336bf (patch) | |
tree | af3d72d23382743aa22845bc944e676753b2adf0 /test/main.cpp | |
parent | update (diff) | |
download | cgrep-029933103f199a618ee94e080a4b8fe1243336bf.tar.gz cgrep-029933103f199a618ee94e080a4b8fe1243336bf.zip |
changed memvar switch to cdecl and added a new switch, cxxdecl.
Diffstat (limited to 'test/main.cpp')
-rw-r--r-- | test/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/main.cpp b/test/main.cpp index 5c2ceb8..87b7eae 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -19,6 +19,13 @@ struct myStruct { union myUnion { int a; double b; + int app; +}; + +struct verymuchStruct { + int myinteger; + int yourinteger; + int ourinteger; }; void myFunc1(void) {} |