aboutsummaryrefslogtreecommitdiffstats
path: root/test/function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/function.cpp')
-rw-r--r--test/function.cpp6
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