Removing some superfluous extern declarations

No functional change.

Resolves #93
This commit is contained in:
mstembera
2014-11-01 22:10:31 -07:00
committed by Joona Kiiski
parent bcbab19376
commit bc83515c9e
3 changed files with 13 additions and 13 deletions

View File

@@ -28,9 +28,9 @@ namespace Eval {
const Value Tempo = Value(17); // Must be visible to search
extern void init();
extern Value evaluate(const Position& pos);
extern std::string trace(const Position& pos);
void init();
Value evaluate(const Position& pos);
std::string trace(const Position& pos);
}