projects
/
fairystockfish.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
631fa6a
)
Fix variable naming in prototypes at uci.cpp
author
Joona Kiiski
<joona.kiiski@gmail.com>
Wed, 5 Jan 2011 22:34:51 +0000 (
00:34
+0200)
committer
Marco Costalba
<mcostalba@gmail.com>
Wed, 5 Jan 2011 22:41:08 +0000 (23:41 +0100)
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/uci.cpp
patch
|
blob
|
history
diff --git
a/src/uci.cpp
b/src/uci.cpp
index
28cbacb
..
a7a61ce
100644
(file)
--- a/
src/uci.cpp
+++ b/
src/uci.cpp
@@
-49,10
+49,10
@@
namespace {
typedef istringstream UCIParser;
// Local functions
- void set_option(UCIParser& uip);
- void set_position(Position& pos, UCIParser& uip);
- bool go(Position& pos, UCIParser& uip);
- void perft(Position& pos, UCIParser& uip);
+ void set_option(UCIParser& up);
+ void set_position(Position& pos, UCIParser& up);
+ bool go(Position& pos, UCIParser& up);
+ void perft(Position& pos, UCIParser& up);
}