diff options
author | Chris Lattner <sabre@nondot.org> | 2006-02-22 16:23:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-02-22 16:23:43 +0000 |
commit | 410354fe0c052141dadeca939395743f8dd58e38 (patch) | |
tree | 93f7cc80943a94623335b126b87998cebbe0e00b /include/llvm/System | |
parent | a2a51607a6601d42c5f559858f77ef1cad86efe1 (diff) | |
download | external_llvm-410354fe0c052141dadeca939395743f8dd58e38.zip external_llvm-410354fe0c052141dadeca939395743f8dd58e38.tar.gz external_llvm-410354fe0c052141dadeca939395743f8dd58e38.tar.bz2 |
Make the LLVM headers "-ansi -pedantic -Wno-long-long" clean.
Patch by Martin Partel!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26313 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/System')
-rw-r--r-- | include/llvm/System/MappedFile.h | 2 | ||||
-rw-r--r-- | include/llvm/System/Path.h | 2 | ||||
-rw-r--r-- | include/llvm/System/TimeValue.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/System/MappedFile.h b/include/llvm/System/MappedFile.h index 6092de6..9fd0d08 100644 --- a/include/llvm/System/MappedFile.h +++ b/include/llvm/System/MappedFile.h @@ -38,7 +38,7 @@ namespace sys { READ_ACCESS = 0x0001, ///< Map the file for reading WRITE_ACCESS = 0x0002, ///< Map the file for write access EXEC_ACCESS = 0x0004, ///< Map the file for execution access - SHARED_MAPPING = 0x0008, ///< Map the file shared with other processes + SHARED_MAPPING = 0x0008 ///< Map the file shared with other processes }; /// @} /// @name Constructors diff --git a/include/llvm/System/Path.h b/include/llvm/System/Path.h index 3ff657b..5cbca9b 100644 --- a/include/llvm/System/Path.h +++ b/include/llvm/System/Path.h @@ -553,7 +553,7 @@ namespace sys { UnknownFileType = 0, ///< Unrecognized file BytecodeFileType = 1, ///< Uncompressed bytecode file CompressedBytecodeFileType = 2, ///< Compressed bytecode file - ArchiveFileType = 3, ///< ar style archive file + ArchiveFileType = 3 ///< ar style archive file }; /// This utility function allows any memory block to be examined in order diff --git a/include/llvm/System/TimeValue.h b/include/llvm/System/TimeValue.h index 47f79ce..624eb70 100644 --- a/include/llvm/System/TimeValue.h +++ b/include/llvm/System/TimeValue.h @@ -75,7 +75,7 @@ namespace sys { NANOSECONDS_PER_MICROSECOND = 1000, ///< One Thousand NANOSECONDS_PER_MILLISECOND = 1000000,///< One Million NANOSECONDS_PER_POSIX_TICK = 100, ///< Posix tick is 100 Hz (10ms) - NANOSECONDS_PER_WIN32_TICK = 100, ///< Win32 tick is 100 Hz (10ms) + NANOSECONDS_PER_WIN32_TICK = 100 ///< Win32 tick is 100 Hz (10ms) }; /// @} |