about summary refs log tree commit diff stats
path: root/server/src/main.cpp
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-03-20 12:04:49 +0100
committerChristian Krinitsin <mail@krinitsin.com>2025-03-20 12:04:49 +0100
commitafbafc29ab11c17c2b90dd5e645f1943490c276a (patch)
tree1103dbf22d27126b269e7f62a804e68501c760a1 /server/src/main.cpp
parente8abcfc7425167e96bf00a8b79de9a30ee2e2800 (diff)
downloadBT-Programming-Assignment-afbafc29ab11c17c2b90dd5e645f1943490c276a.tar.gz
BT-Programming-Assignment-afbafc29ab11c17c2b90dd5e645f1943490c276a.zip
server: add a sample main function, which tests the hashtable
Diffstat (limited to 'server/src/main.cpp')
-rw-r--r--server/src/main.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/server/src/main.cpp b/server/src/main.cpp
deleted file mode 100644
index 26bee21..0000000
--- a/server/src/main.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <cstdio>
-
-int main(int argc, char* argv[])
-{
-    if (argc != 2) {
-        std::printf("The size of the hash table is needed");
-        return 1;
-    }
-
-    return 0;
-}