aboutsummaryrefslogtreecommitdiffstats
path: root/test/fielddecl.cpp
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2020-07-14 15:30:12 +0000
committerbloodstalker <thabogre@gmail.com>2020-07-14 15:30:12 +0000
commit835b5ba3d6594a60963af89b0487f89afe6e19f1 (patch)
tree733fbda827f60ae4d35128605fbef3679f33b05e /test/fielddecl.cpp
parentadded a new switch:recorddecl. the test script is still WIP. (diff)
downloadcgrep-835b5ba3d6594a60963af89b0487f89afe6e19f1.tar.gz
cgrep-835b5ba3d6594a60963af89b0487f89afe6e19f1.zip
wip-tests
Diffstat (limited to '')
-rw-r--r--test/fielddecl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fielddecl.cpp b/test/fielddecl.cpp
index 6646afd..82f5d1f 100644
--- a/test/fielddecl.cpp
+++ b/test/fielddecl.cpp
@@ -4,12 +4,12 @@ namespace fielddecl_ns{
struct testStruct {
int fieldone;
- float fieldtwo;
+ float testfieldtwo;
int fieldmacro;
};
union testUnion {
- int fieldone;
+ int testfieldone;
bool fieldtwo;
};
@@ -18,7 +18,7 @@ public:
testClass(void);
virtual ~testClass();
- void myMethod(void);
+ void testMethod(void);
private:
int an_arg;