Skip to content

Commit

Permalink
include cstring for std::memcpy, #241
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyanyan committed Jun 6, 2024
1 parent 294b9b7 commit 5eb8e78
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/engine/evaluate_generic.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#pragma once
#include <iostream>
#include <fstream>
#include <cstring>
#include "setting.hpp"
#include "common.hpp"
#include "board.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/engine/evaluate_simd.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#else
#include <x86intrin.h>
#endif
#include <cstring>
#include "setting.hpp"
#include "common.hpp"
#include "board.hpp"
Expand Down
4 changes: 2 additions & 2 deletions web_resources/generate_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@


GUI_VERSION_DOT = '7.1.0'
GUI_DATE_STR = 'TBD'
GUI_DATE_STR = '2024/06/06'

CONSOLE_VERSION_DOT = '7.1.0'
CONSOLE_DATE_STR = 'TBD'
CONSOLE_DATE_STR = '2024/06/06'

GUI_VERSION_UNDERBAR = GUI_VERSION_DOT.replace('.', '_')
CONSOLE_VERSION_UNDERBAR = CONSOLE_VERSION_DOT.replace('.', '_')
Expand Down

0 comments on commit 5eb8e78

Please sign in to comment.