[llvm] r192745 - Support/FileSystem.h: Remove a trailing comma in enum file_magic::Impl.
NAKAMURA Takumi
geek4civic at gmail.com
Tue Oct 15 16:01:44 PDT 2013
Author: chapuni
Date: Tue Oct 15 18:01:44 2013
New Revision: 192745
URL: http://llvm.org/viewvc/llvm-project?rev=192745&view=rev
Log:
Support/FileSystem.h: Remove a trailing comma in enum file_magic::Impl.
Modified:
llvm/trunk/include/llvm/Support/FileSystem.h
Modified: llvm/trunk/include/llvm/Support/FileSystem.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/FileSystem.h?rev=192745&r1=192744&r2=192745&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/FileSystem.h (original)
+++ llvm/trunk/include/llvm/Support/FileSystem.h Tue Oct 15 18:01:44 2013
@@ -239,7 +239,7 @@ struct file_magic {
macho_universal_binary, ///< Mach-O universal binary
coff_object, ///< COFF object file
pecoff_executable, ///< PECOFF executable file
- windows_resource, ///< Windows compiled resource file (.rc)
+ windows_resource ///< Windows compiled resource file (.rc)
};
bool is_object() const {
More information about the llvm-commits
mailing list