diff options
author | bloodstalker <thabogre@gmail.com> | 2020-07-14 15:30:12 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2020-07-14 15:30:12 +0000 |
commit | 835b5ba3d6594a60963af89b0487f89afe6e19f1 (patch) | |
tree | 733fbda827f60ae4d35128605fbef3679f33b05e /test/function.cpp | |
parent | added a new switch:recorddecl. the test script is still WIP. (diff) | |
download | cgrep-835b5ba3d6594a60963af89b0487f89afe6e19f1.tar.gz cgrep-835b5ba3d6594a60963af89b0487f89afe6e19f1.zip |
wip-tests
Diffstat (limited to 'test/function.cpp')
-rw-r--r-- | test/function.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/function.cpp b/test/function.cpp index 83878e7..bb0f228 100644 --- a/test/function.cpp +++ b/test/function.cpp @@ -1,6 +1,6 @@ namespace function_ns{ -void MyFunc(void) { return; } +void testMyFunc(void) { return; } class yolo { public: @@ -8,7 +8,7 @@ public: yolo(int a) : a(a) {} virtual ~yolo(); - void yolofunc(void) { return; } + void testyolofunc(void) { return; } private: int a; @@ -16,5 +16,5 @@ private: #define MFunc macroedFunc -void MFunc(void) { return; } +void testFunc(void) { return; } } // namespace |