From e37dd805bee84660eba40e8503bc2e19a4202350 Mon Sep 17 00:00:00 2001 From: Sam Bishop Date: Tue, 25 Mar 2008 04:41:18 +0000 Subject: Make a note of the fact that EmitOwnedPtr() has nothing to do with the OwningPtr<> class. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48763 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Bitcode/Serialize.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/llvm') diff --git a/include/llvm/Bitcode/Serialize.h b/include/llvm/Bitcode/Serialize.h index b493c57..eae9e7c 100644 --- a/include/llvm/Bitcode/Serialize.h +++ b/include/llvm/Bitcode/Serialize.h @@ -57,6 +57,8 @@ public: template 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 inline void EmitOwnedPtr(T* ptr) { EmitPtr(ptr); -- cgit v1.1