Release 1.5.0

Summary: Bump version and fix small issues blocking release

Reviewed By: passy

Differential Revision: D5036755

fbshipit-source-id: 65fa2cd09dad8108bdd21067fb44107b059732e8
This commit is contained in:
Emil Sjolander
2017-05-10 09:28:57 -07:00
committed by Facebook Github Bot
parent 2c91e1e7d2
commit 3fb135829d
8 changed files with 15 additions and 61 deletions

View File

@@ -25,10 +25,10 @@ class FBEXPORT JByteBuffer : public JavaClass<JByteBuffer> {
static local_ref<JByteBuffer> wrapBytes(uint8_t* data, size_t size);
bool isDirect();
bool isDirect() const;
uint8_t* getDirectBytes();
size_t getDirectSize();
uint8_t* getDirectBytes() const;
size_t getDirectSize() const;
};
}}