Use foobar for testing purposes

This commit is contained in:
2019-11-28 21:41:32 +01:00
parent f4f8ae63c6
commit dff20e8bac
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -2,6 +2,6 @@
#include <iostream> #include <iostream>
void c0ding::network::test() { void c0ding::network::foo() {
std::cout << "test" << std::endl; std::cout << "bar" << std::endl;
} }
+1 -1
View File
@@ -2,7 +2,7 @@
#define C0DING_NETWORK_H #define C0DING_NETWORK_H
namespace c0ding::network { namespace c0ding::network {
void test(); void foo();
} }
#endif //C0DING_NETWORK_H #endif //C0DING_NETWORK_H