aboutsummaryrefslogtreecommitdiff
path: root/src/misc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc.cpp')
-rw-r--r--src/misc.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/misc.cpp b/src/misc.cpp
index 6e87351..79cf74f 100644
--- a/src/misc.cpp
+++ b/src/misc.cpp
@@ -1,14 +1,9 @@
#include "misc.hpp"
#include "moves.hpp"
#include <cstdint>
-#include <string>
+#include <string_view>
-std::string version = "1";
-std::string name = "Mono";
-
-std::string engine_version() { return name + " " + version; };
-
-std::string engine_info() { return engine_version() + "\n"; }
+std::string_view engine_info() { return "Mono 1\n"; }
uint64_t MoveGenTest(int depth, Game *g) {
uint64_t num = 0;