diff options
author | Douglas Yung <douglas.yung@sony.com> | 2016-05-03 00:12:59 +0000 |
---|---|---|
committer | Douglas Yung <douglas.yung@sony.com> | 2016-05-03 00:12:59 +0000 |
commit | 091d8fd95194160103e27364734ed29786bc8af6 (patch) | |
tree | c91561eff49f3d56e89632f490dc0dd9b4054d3b /llvm/lib/Support/Windows | |
parent | 24f26e6d91733d90ae24c8bbc95e052928b44bff (diff) | |
download | bcm5719-llvm-091d8fd95194160103e27364734ed29786bc8af6.tar.gz bcm5719-llvm-091d8fd95194160103e27364734ed29786bc8af6.zip |
Adding period to the end of a comment to test out commit access.
llvm-svn: 268337
Diffstat (limited to 'llvm/lib/Support/Windows')
-rw-r--r-- | llvm/lib/Support/Windows/Path.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Windows/Path.inc b/llvm/lib/Support/Windows/Path.inc index 6de21d08bf7..f2f34d85e32 100644 --- a/llvm/lib/Support/Windows/Path.inc +++ b/llvm/lib/Support/Windows/Path.inc @@ -403,7 +403,7 @@ static bool isReservedName(StringRef path) { 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; |