1.1 --- a/src/Hash.cpp Thu Sep 24 10:28:50 2009 -0700
1.2 +++ b/src/Hash.cpp Mon Sep 28 23:39:08 2009 -0700
1.3 @@ -9,6 +9,7 @@
1.4
1.5 #include "Hash.h"
1.6 #include "Dictionary.h"
1.7 +#include <stdio.h>
1.8 #include <algorithm>
1.9
1.10 namespace Mooseyard {
1.11 @@ -110,7 +111,7 @@
1.12 for (int index=0; index<_tableSize; index++)
1.13 if (_table[index].hasValue()) {
1.14 const Key &key = _table[index].key();
1.15 - printf("%3i: %*s -> %p\n",
1.16 + ::printf("%3i: %*s -> %p\n",
1.17 index, (int)key.length,(const char*)key.bytes, _table[index].value());
1.18 }
1.19 }