mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 10:57:43 +00:00
Rename getters functions removing 'get_' prefix
Follow the suggested Qt style: http://doc.qt.nokia.com/qq/qq13-apis.html It seems to me simpler and easier to read. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
+2
-2
@@ -107,7 +107,7 @@ void benchmark(int argc, char* argv[]) {
|
||||
|
||||
// Ok, let's start the benchmark !
|
||||
totalNodes = 0;
|
||||
time = get_system_time();
|
||||
time = system_time();
|
||||
|
||||
for (size_t i = 0; i < fenList.size(); i++)
|
||||
{
|
||||
@@ -131,7 +131,7 @@ void benchmark(int argc, char* argv[]) {
|
||||
}
|
||||
}
|
||||
|
||||
time = get_system_time() - time;
|
||||
time = system_time() - time;
|
||||
|
||||
cerr << "\n==============================="
|
||||
<< "\nTotal time (ms) : " << time
|
||||
|
||||
Reference in New Issue
Block a user