[llvm] r268337 - Adding period to the end of a comment to test out commit access.

Douglas Yung via llvm-commits llvm-commits at lists.llvm.org
Mon May 2 17:12:59 PDT 2016


Author: dyung
Date: Mon May  2 19:12:59 2016
New Revision: 268337

URL: http://llvm.org/viewvc/llvm-project?rev=268337&view=rev
Log:
Adding period to the end of a comment to test out commit access.


Modified:
    llvm/trunk/lib/Support/Windows/Path.inc

Modified: llvm/trunk/lib/Support/Windows/Path.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/Path.inc?rev=268337&r1=268336&r2=268337&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Windows/Path.inc (original)
+++ llvm/trunk/lib/Support/Windows/Path.inc Mon May  2 19:12:59 2016
@@ -403,7 +403,7 @@ static bool isReservedName(StringRef pat
   if (path.startswith("\\\\.\\"))
     return true;
 
-  // Then compare against the list of ancient reserved names
+  // Then compare against the list of ancient reserved names.
   for (size_t i = 0; i < array_lengthof(sReservedNames); ++i) {
     if (path.equals_lower(sReservedNames[i]))
       return true;




More information about the llvm-commits mailing list