diff options
author | Determinant <[email protected]> | 2019-06-04 22:17:17 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2019-06-04 22:17:17 -0400 |
commit | dab48a1825aed9c810ce83ea8054fa435ecb41be (patch) | |
tree | e0a3f9587e3606350dedb291a22a70a9ba5b7e44 /src/stream.cpp | |
parent | da42ddf96c78a73b4cf5f8854e98e009f4f174a4 (diff) |
...
Diffstat (limited to 'src/stream.cpp')
-rw-r--r-- | src/stream.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/stream.cpp b/src/stream.cpp index ec1d5da..2fe1a11 100644 --- a/src/stream.cpp +++ b/src/stream.cpp @@ -1,8 +1,7 @@ +#include "salticidae/config.h" #ifdef SALTICIDAE_CBINDINGS #include "salticidae/stream.h" -using namespace salticidae; - extern "C" { uint256_t *uint256_new() { return new uint256_t(); } @@ -23,9 +22,9 @@ void uint256_unserialize(uint256_t *self, datastream_t *s) { self->unserialize(*s); } -datastream_t *datastream_new() { return new DataStream(); } +datastream_t *datastream_new() { return new datastream_t(); } datastream_t *datastream_new_from_bytes(const uint8_t *begin, const uint8_t *end) { - return new DataStream(begin, end); + return new datastream_t(begin, end); } void datastream_assign_by_copy(datastream_t *dst, const datastream_t *src) { |