[llvm-commits] [llvm] r118367 - in /llvm/trunk: include/llvm/System/Path.h lib/System/Unix/Path.inc lib/System/Win32/Path.inc

Duncan Sands baldrick at free.fr
Sun Nov 7 03:15:16 PST 2010


Hi Rafael,

=====================================
> --- llvm/trunk/include/llvm/System/Path.h (original)
> +++ llvm/trunk/include/llvm/System/Path.h Sat Nov  6 23:36:50 2010
> @@ -373,6 +373,12 @@
>         /// @brief Determins if the path is a directory in the file system.
>         bool isDirectory() const;
>
> +      /// This function determines if the path name refences an

refences -> references

> +      /// existing symbolic link.
> +      /// @returns true if the pathname references an existing symlink.
> +      /// @brief Determins if the path is a symlink in the file system.

Determins -> Determines

> ==============================================================================
> --- llvm/trunk/lib/System/Win32/Path.inc (original)
> +++ llvm/trunk/lib/System/Win32/Path.inc Sat Nov  6 23:36:50 2010
> @@ -351,6 +351,11 @@
>   }
>
>   bool
> +Path::isSymLink() const {
> +  return false;
> +}

Doesn't windows support a kind of symbolic link nowadays?

Ciao,

Duncan.



More information about the llvm-commits mailing list