it compiles :)

But that's all, not tested, don't expect it to do anything but crash.
This commit is contained in:
Bernhard Amann 2012-02-06 17:37:02 -08:00
parent 238e9545c0
commit 8385d5bb2d
7 changed files with 258 additions and 67 deletions

View file

@ -680,7 +680,7 @@ Val* Manager::ValueToIndexVal(int num_fields, const RecordType *type, const Valu
}
void Manager::SendEntry(const ReaderFrontend* reader, int id, const Value* const *vals) {
void Manager::SendEntry(const ReaderFrontend* reader, const int id, const Value* const *vals) {
ReaderInfo *i = FindReader(reader);
if ( i == 0 ) {
reporter->InternalError("Unknown reader");
@ -703,7 +703,7 @@ void Manager::SendEntry(const ReaderFrontend* reader, int id, const Value* const
}
void Manager::SendEntryTable(const ReaderFrontend* reader, int id, const Value* const *vals) {
void Manager::SendEntryTable(const ReaderFrontend* reader, const int id, const Value* const *vals) {
ReaderInfo *i = FindReader(reader);
bool updated = false;