remove extraneous type qualifiers
authorChris Lattner <sabre@nondot.org>
Thu, 3 May 2007 18:14:56 +0000 (18:14 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 3 May 2007 18:14:56 +0000 (18:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36679 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/MathExtras.h
include/llvm/System/Path.h

index f3c3b676d673256a42af51b067f59c976929c1c6..88a110395d64a698e2c2d227500780ea41f7d90f 100644 (file)
@@ -55,27 +55,27 @@ inline bool isUInt32(int64_t Value) {
 /// isMask_32 - This function returns true if the argument is a sequence of ones
 /// starting at the least significant bit with the remainder zero (32 bit
 /// version).   Ex. isMask_32(0x0000FFFFU) == true.
-inline const bool isMask_32(uint32_t Value) {
+inline bool isMask_32(uint32_t Value) {
   return Value && ((Value + 1) & Value) == 0;
 }
 
 /// isMask_64 - This function returns true if the argument is a sequence of ones
 /// starting at the least significant bit with the remainder zero (64 bit
 /// version).
-inline const bool isMask_64(uint64_t Value) {
+inline bool isMask_64(uint64_t Value) {
   return Value && ((Value + 1) & Value) == 0;
 }
 
 /// isShiftedMask_32 - This function returns true if the argument contains a  
 /// sequence of ones with the remainder zero (32 bit version.)
 /// Ex. isShiftedMask_32(0x0000FF00U) == true.
-inline const bool isShiftedMask_32(uint32_t Value) {
+inline bool isShiftedMask_32(uint32_t Value) {
   return isMask_32((Value - 1) | Value);
 }
 
 /// isShiftedMask_64 - This function returns true if the argument contains a  
 /// sequence of ones with the remainder zero (64 bit version.)
-inline const bool isShiftedMask_64(uint64_t Value) {
+inline bool isShiftedMask_64(uint64_t Value) {
   return isMask_64((Value - 1) | Value);
 }
 
index a595efbfed451cb74a770dd71f42d42e6f0679f7..04b5d95e1e41a73a3a0eccd8f7830e831b053e2e 100644 (file)
@@ -264,7 +264,7 @@ namespace sys {
       /// Obtain a 'C' string for the path name.
       /// @returns a 'C' string containing the path name.
       /// @brief Returns the path as a C string.
-      const char *const c_str() const { return path.c_str(); }
+      const char *c_str() const { return path.c_str(); }
 
     /// @}
     /// @name Disk Accessors