[llvm-commits] CVS: llvm/include/llvm/System/MappedFile.h Path.h TimeValue.h
Chris Lattner
lattner at cs.uiuc.edu
Wed Feb 22 08:24:05 PST 2006
Changes in directory llvm/include/llvm/System:
MappedFile.h updated: 1.8 -> 1.9
Path.h updated: 1.27 -> 1.28
TimeValue.h updated: 1.13 -> 1.14
---
Log message:
Make the LLVM headers "-ansi -pedantic -Wno-long-long" clean.
Patch by Martin Partel!
---
Diffs of the changes: (+3 -3)
MappedFile.h | 2 +-
Path.h | 2 +-
TimeValue.h | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/include/llvm/System/MappedFile.h
diff -u llvm/include/llvm/System/MappedFile.h:1.8 llvm/include/llvm/System/MappedFile.h:1.9
--- llvm/include/llvm/System/MappedFile.h:1.8 Thu May 5 17:31:47 2005
+++ llvm/include/llvm/System/MappedFile.h Wed Feb 22 10:23:43 2006
@@ -38,7 +38,7 @@
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
Index: llvm/include/llvm/System/Path.h
diff -u llvm/include/llvm/System/Path.h:1.27 llvm/include/llvm/System/Path.h:1.28
--- llvm/include/llvm/System/Path.h:1.27 Wed Jul 27 00:53:43 2005
+++ llvm/include/llvm/System/Path.h Wed Feb 22 10:23:43 2006
@@ -553,7 +553,7 @@
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
Index: llvm/include/llvm/System/TimeValue.h
diff -u llvm/include/llvm/System/TimeValue.h:1.13 llvm/include/llvm/System/TimeValue.h:1.14
--- llvm/include/llvm/System/TimeValue.h:1.13 Thu May 5 17:31:47 2005
+++ llvm/include/llvm/System/TimeValue.h Wed Feb 22 10:23:43 2006
@@ -75,7 +75,7 @@
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)
};
/// @}
More information about the llvm-commits
mailing list