aboutsummaryrefslogtreecommitdiff
path: root/src/uci.cpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-31 20:27:02 +0200
committerAdam <adammegarules1@gmail.com>2026-07-31 20:27:02 +0200
commit1b006985ba2381a29dd9aa34aec1dafbae224897 (patch)
treee437b4a1ec54cf043f7272a3fc5d3060f5706a37 /src/uci.cpp
parentee7815bad917cf880c147186a01679fb7ce46a8e (diff)
using cpp check on this project
Diffstat (limited to 'src/uci.cpp')
-rw-r--r--src/uci.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uci.cpp b/src/uci.cpp
index d9972b2..4357e99 100644
--- a/src/uci.cpp
+++ b/src/uci.cpp
@@ -4,7 +4,7 @@
#include "bot.hpp"
#include "misc.hpp"
#include "moves.hpp"
-#include "zobrist/zobrist.hpp"
+#include "zobrist.hpp"
#include <algorithm>
#include <cassert>
@@ -37,7 +37,7 @@ void LogUci(const std::string &message) {
}
using namespace std;
-Move UciToMove(string uci) {
+Move UciToMove(const string uci) {
Position from;
Position to;