Skip to content

Commit fd1e914

Browse files
committed
Fix namespaces and comments
1 parent de31b4b commit fd1e914

File tree

5 files changed

+77
-100
lines changed

5 files changed

+77
-100
lines changed

include/ghostfs/fs.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ int start_fs(char* executable, char* argmnt, std::vector<std::string> options, s
1111
int port, std::string user, std::string token, uint8_t write_back_cache_size,
1212
uint8_t read_ahead_cache_size, std::string cert_file);
1313

14-
int hello_stat(fuse_ino_t ino, int64_t fh, struct stat* stbuf);
15-
int hello_stat(fuse_ino_t ino, struct stat* stbuf);
14+
int ghostfs_stat(fuse_ino_t ino, int64_t fh, struct stat* stbuf);
15+
int ghostfs_stat(fuse_ino_t ino, struct stat* stbuf);
1616

1717
extern std::map<uint64_t, std::string> ino_to_path;
1818
extern std::map<std::string, uint64_t> path_to_ino;

include/ghostfs/ghostfs.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@
44

55
namespace ghostfs {
66

7-
/** Language codes to be used with the GhostFS class */
8-
9-
/**
10-
* @brief A class for saying hello in multiple languages
11-
*/
127
class GhostFS {
138
public:
149
/**

0 commit comments

Comments
 (0)