Use static instead of anonymous namespace for helper functions. NFC.
[oota-llvm.git] / lib / Support / Unix / Path.inc
index e79abcb0fcbfec2de09f3e0cb39b3a4fb588210a..d85c37ab3bfafd7d790aa495e9c4f7891f1f3cbc 100644 (file)
@@ -560,8 +560,7 @@ bool home_directory(SmallVectorImpl<char> &result) {
   return false;
 }
 
-namespace {
-bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) {
+static bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) {
   #if defined(_CS_DARWIN_USER_TEMP_DIR) && defined(_CS_DARWIN_USER_CACHE_DIR)
   // On Darwin, use DARWIN_USER_TEMP_DIR or DARWIN_USER_CACHE_DIR.
   // macros defined in <unistd.h> on darwin >= 9
@@ -586,7 +585,7 @@ bool getDarwinConfDir(bool TempDir, SmallVectorImpl<char> &Result) {
   return false;
 }
 
-bool getUserCacheDir(SmallVectorImpl<char> &Result) {
+static bool getUserCacheDir(SmallVectorImpl<char> &Result) {
   // First try using XDS_CACHE_HOME env variable,
   // as specified in XDG Base Directory Specification at
   // http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
@@ -608,8 +607,6 @@ bool getUserCacheDir(SmallVectorImpl<char> &Result) {
 
   return false;
 }
-}
-
 
 static const char *getEnvTempDir() {
   // Check whether the temporary directory is specified by an environment