diff options
author | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2011-02-11 01:41:34 +0100 |
---|---|---|
committer | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2011-02-11 01:41:34 +0100 |
commit | 1c931920af96e8ef4fd7f923b58f23b2bee869ee (patch) | |
tree | 2fa3974b0ef635ce44586b362caed0da003e769d /indra/llvfs | |
parent | 627c7634398e03145f297e91a8e93c0bbba00e33 (diff) |
OPEN-29 Cleanup: removed superflous "public:"
Not related, just a while-I'm-at-it thing.
Diffstat (limited to 'indra/llvfs')
-rw-r--r-- | indra/llvfs/lldir_linux.h | 2 | ||||
-rw-r--r-- | indra/llvfs/lldir_mac.h | 2 | ||||
-rw-r--r-- | indra/llvfs/lldir_solaris.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/indra/llvfs/lldir_linux.h b/indra/llvfs/lldir_linux.h index c7cfe905f5..6015b25faa 100644 --- a/indra/llvfs/lldir_linux.h +++ b/indra/llvfs/lldir_linux.h @@ -44,7 +44,7 @@ public: /*virtual*/ void initAppDirs(const std::string &app_name, const std::string& app_read_only_data_dir); -public: + virtual std::string getCurPath(); virtual U32 countFilesInDir(const std::string &dirname, const std::string &mask); virtual BOOL getNextFileInDir(const std::string &dirname, const std::string &mask, std::string &fname); diff --git a/indra/llvfs/lldir_mac.h b/indra/llvfs/lldir_mac.h index 6bde458bf6..b456d3afca 100644 --- a/indra/llvfs/lldir_mac.h +++ b/indra/llvfs/lldir_mac.h @@ -43,7 +43,7 @@ public: /*virtual*/ void initAppDirs(const std::string &app_name, const std::string& app_read_only_data_dir); -public: + virtual S32 deleteFilesInDir(const std::string &dirname, const std::string &mask); virtual std::string getCurPath(); virtual U32 countFilesInDir(const std::string &dirname, const std::string &mask); diff --git a/indra/llvfs/lldir_solaris.h b/indra/llvfs/lldir_solaris.h index b48752d362..5623254758 100644 --- a/indra/llvfs/lldir_solaris.h +++ b/indra/llvfs/lldir_solaris.h @@ -44,7 +44,7 @@ public: /*virtual*/ void initAppDirs(const std::string &app_name, const std::string& app_read_only_data_dir); -public: + virtual std::string getCurPath(); virtual U32 countFilesInDir(const std::string &dirname, const std::string &mask); virtual BOOL getNextFileInDir(const std::string &dirname, const std::string &mask, std::string &fname); |