aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Filesystem/Filesystem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/Filesystem/Filesystem.cpp')
-rw-r--r--src/libjin/Filesystem/Filesystem.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/libjin/Filesystem/Filesystem.cpp b/src/libjin/Filesystem/Filesystem.cpp
index e9b05e3..8089c9d 100644
--- a/src/libjin/Filesystem/Filesystem.cpp
+++ b/src/libjin/Filesystem/Filesystem.cpp
@@ -20,9 +20,6 @@ namespace filesystem
return fs ? fs : (fs = new Filesystem());
}
- /**
- * r is relative path
- */
void Filesystem::mount(const char * path)
{
int err = smtmount(S, path);
@@ -33,9 +30,6 @@ namespace filesystem
}
}
- /**
- *
- */
int Filesystem::read(const char* path, Buffer* buffer)
{
buffer->data = smtread(S, path, &buffer->size);
@@ -64,5 +58,5 @@ namespace filesystem
return smtexists(S, path) == 0;
}
-}
-} \ No newline at end of file
+} // filesystem
+} // jin \ No newline at end of file