| Index: native_client_sdk/src/libraries/nacl_io/filesystem.cc
|
| diff --git a/native_client_sdk/src/libraries/nacl_io/filesystem.cc b/native_client_sdk/src/libraries/nacl_io/filesystem.cc
|
| index 7a2b1a01e863d4bf25cb72cc3bbd855b47dc9e47..b823ab6c953feb92509fa4bb4c4b53a9116e0ae1 100644
|
| --- a/native_client_sdk/src/libraries/nacl_io/filesystem.cc
|
| +++ b/native_client_sdk/src/libraries/nacl_io/filesystem.cc
|
| @@ -21,9 +21,11 @@
|
|
|
| namespace nacl_io {
|
|
|
| -Filesystem::Filesystem() : dev_(0) {}
|
| +Filesystem::Filesystem() : dev_(0) {
|
| +}
|
|
|
| -Filesystem::~Filesystem() {}
|
| +Filesystem::~Filesystem() {
|
| +}
|
|
|
| Error Filesystem::Init(const FsInitArgs& args) {
|
| dev_ = args.dev;
|
| @@ -31,7 +33,8 @@ Error Filesystem::Init(const FsInitArgs& args) {
|
| return 0;
|
| }
|
|
|
| -void Filesystem::Destroy() {}
|
| +void Filesystem::Destroy() {
|
| +}
|
|
|
| Error Filesystem::OpenResource(const Path& path, ScopedNode* out_node) {
|
| out_node->reset(NULL);
|
|
|