Skip to content

Commit 9a52191

Browse files
committed
Merge pull request #203 from eregon/cpppickler
Implementation of a C++ Pickler
2 parents f45ceea + 89c3702 commit 9a52191

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+940
-792
lines changed

boosthost/emulator/emulator.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ int main(int argc, char** argv) {
318318
properties.registerValueProp(vm, "application.url", fakeURL);
319319

320320
std::istringstream input(*app);
321-
UnstableNode functor = bootUnpickle(vm, input);
321+
UnstableNode functor = unpickle(vm, input);
322322
properties.registerValueProp(vm, "application.functor", functor);
323323
}
324324
app.reset(); // Release the memory hold by the potentially big app string

0 commit comments

Comments
 (0)