OSDN Git Service

Make a note of the fact that EmitOwnedPtr() has nothing to do with the
authorSam Bishop <sam@bishop.dhs.org>
Tue, 25 Mar 2008 04:41:18 +0000 (04:41 +0000)
committerSam Bishop <sam@bishop.dhs.org>
Tue, 25 Mar 2008 04:41:18 +0000 (04:41 +0000)
OwningPtr<> class.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48763 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Bitcode/Serialize.h

index b493c57..eae9e7c 100644 (file)
@@ -57,6 +57,8 @@ public:
   template <typename T>
   inline void EmitRef(const T& ref) { EmitPtr(&ref); }
   
+  // Emit a pointer and the object pointed to.  (This has no relation to the
+  // OwningPtr<> class.)
   template <typename T>
   inline void EmitOwnedPtr(T* ptr) {
     EmitPtr(ptr);