Skip to content
Snippets Groups Projects
Commit 627c7634 authored by Boroondas Gupte's avatar Boroondas Gupte
Browse files

OPEN-29 Cleanup: removed extra qualification ‘LLDir_Win32::’ on member ‘getNextFileInDir’

Before OPEN-29, when lldir_win32.h would have been included when
building for Linux, GCC would error out with
	indra/llvfs/lldir_win32.h:50: error: extra qualification ‘LLDir_Win32::’ on member ‘getNextFileInDir’
which, although unintended, probably was a Good Thing (TM), as this
would have aborted the build, so that the wrong include would be
noticed. Now that we explicitly error out with a (hopefully) useful
error message, this isn't needed anymore.
parent 29b3207f
No related branches found
No related tags found
No related merge requests found
...@@ -51,7 +51,7 @@ class LLDir_Win32 : public LLDir ...@@ -51,7 +51,7 @@ class LLDir_Win32 : public LLDir
/*virtual*/ std::string getLLPluginFilename(std::string base_name); /*virtual*/ std::string getLLPluginFilename(std::string base_name);
private: private:
BOOL LLDir_Win32::getNextFileInDir(const llutf16string &dirname, const std::string &mask, std::string &fname); BOOL getNextFileInDir(const llutf16string &dirname, const std::string &mask, std::string &fname);
void* mDirSearch_h; void* mDirSearch_h;
llutf16string mCurrentDir; llutf16string mCurrentDir;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment