[llvm] r211697 - Code cleanup.

Logan Chien tzuhsiang.chien at gmail.com
Wed Jun 25 06:46:18 PDT 2014


Author: logan
Date: Wed Jun 25 08:46:17 2014
New Revision: 211697

URL: http://llvm.org/viewvc/llvm-project?rev=211697&view=rev
Log:
Code cleanup.

Modified:
    llvm/trunk/lib/Support/Path.cpp

Modified: llvm/trunk/lib/Support/Path.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Path.cpp?rev=211697&r1=211696&r2=211697&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Path.cpp (original)
+++ llvm/trunk/lib/Support/Path.cpp Wed Jun 25 08:46:17 2014
@@ -927,7 +927,7 @@ void directory_entry::replace_filename(c
 }
 
 /// @brief Identify the magic in magic.
-  file_magic identify_magic(StringRef Magic) {
+file_magic identify_magic(StringRef Magic) {
   if (Magic.size() < 4)
     return file_magic::unknown;
   switch ((unsigned char)Magic[0]) {





More information about the llvm-commits mailing list