From 8d433bd458b37327e2fa979a3234762f206b3467 Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Fri, 18 Oct 2013 07:13:32 +0000 Subject: [DebugInfo] Remove unneeded struct member and hide struct definition. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192954 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/DebugInfo/DWARFFormValue.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'include') diff --git a/include/llvm/DebugInfo/DWARFFormValue.h b/include/llvm/DebugInfo/DWARFFormValue.h index c88e42a9c9..c8d600839a 100644 --- a/include/llvm/DebugInfo/DWARFFormValue.h +++ b/include/llvm/DebugInfo/DWARFFormValue.h @@ -18,9 +18,8 @@ class DWARFUnit; class raw_ostream; class DWARFFormValue { -public: struct ValueType { - ValueType() : data(NULL), IsDWOIndex(false) { + ValueType() : data(NULL) { uval = 0; } @@ -30,10 +29,8 @@ public: const char* cstr; }; const uint8_t* data; - bool IsDWOIndex; }; -private: uint16_t Form; // Form for this value. ValueType Value; // Contains all data for the form. -- cgit v1.2.3