From 6b0c2173a348ec7349bee2185f1ad16d9f07040c Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Thu, 23 Jul 2009 01:19:53 +0000 Subject: [PATCH] Hide constructors. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76835 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/MDNode.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/llvm/MDNode.h b/include/llvm/MDNode.h index a06d720bf11..14bfe5798a6 100644 --- a/include/llvm/MDNode.h +++ b/include/llvm/MDNode.h @@ -33,10 +33,11 @@ namespace llvm { //===----------------------------------------------------------------------===// // MetadataBase - A base class for MDNode and MDString. class MetadataBase : public Value { -public: +protected: MetadataBase(const Type *Ty, unsigned scid) : Value(Ty, scid) {} +public: /// getType() specialization - Type is always MetadataTy. /// inline const Type *getType() const { @@ -63,15 +64,15 @@ public: /// class MDString : public MetadataBase { MDString(const MDString &); // DO NOT IMPLEMENT - const char *StrBegin, *StrEnd; friend class LLVMContextImpl; -public: - MDString(const char *begin, const char *end) +protected: + explicit MDString(const char *begin, const char *end) : MetadataBase(Type::MetadataTy, Value::MDStringVal), StrBegin(begin), StrEnd(end) {} +public: intptr_t size() const { return StrEnd - StrBegin; } /// begin() - Pointer to the first byte of the string. -- 2.11.0