Index: native_client_sdk/src/libraries/nacl_io/mount.cc |
diff --git a/native_client_sdk/src/libraries/nacl_io/mount.cc b/native_client_sdk/src/libraries/nacl_io/mount.cc |
index d944ac96bddd38997b42ed31e393cd8ad8254d5f..f9113b915e500eda00cdf52eae232f110822d81c 100644 |
--- a/native_client_sdk/src/libraries/nacl_io/mount.cc |
+++ b/native_client_sdk/src/libraries/nacl_io/mount.cc |
@@ -20,6 +20,8 @@ |
#include <windows.h> |
#endif |
+namespace nacl_io { |
+ |
Mount::Mount() : dev_(0) {} |
Mount::~Mount() {} |
@@ -60,3 +62,5 @@ void Mount::OnNodeDestroyed(MountNode* node) { |
inode_pool_.Release(node->stat_.st_ino); |
} |
+} // namespace nacl_io |
+ |