Be const correct
authorChris Lattner <sabre@nondot.org>
Wed, 14 Jan 2004 18:41:38 +0000 (18:41 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 14 Jan 2004 18:41:38 +0000 (18:41 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10856 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Writer/WriterPrimitives.h

index b782c1829b535e34f0236d1cdf4f3b0dc1f6b290..185fac1d0369a6db4c70f378f49a77464f25737a 100644 (file)
@@ -122,13 +122,13 @@ static inline void output(const std::string &s, std::deque<unsigned char> &Out,
     align32(Out);                   // Make sure we are now aligned...
 }
 
-static inline void output_data(void *Ptr, void *End,
+static inline void output_data(const void *Ptr, const void *End,
                                std::deque<unsigned char> &Out,
                                bool Align = false) {
 #ifdef ENDIAN_LITTLE
-  Out.insert(Out.end(), (unsigned char*)Ptr, (unsigned char*)End);
+  Out.insert(Out.end(), (const unsigned char*)Ptr, (const unsigned char*)End);
 #else
-  unsigned char *E = (unsigned char *)End;
+  const unsigned char *E = (const unsigned char *)End;
   while (Ptr != E)
     Out.push_back(*--E);
 #endif