From 8c08dac3fd45761bec710819d3e4cdbbf856c74d Mon Sep 17 00:00:00 2001
From: Philippe Canal <pcanal@fnal.gov>
Date: Tue, 29 Aug 2017 14:15:01 -0500
Subject: [PATCH] Remove never used enum constant TLink::kObjIsParent

---
 README/ReleaseNotes/v610/index.md | 4 ++--
 graf2d/graf/inc/TLink.h           | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README/ReleaseNotes/v610/index.md b/README/ReleaseNotes/v610/index.md
index 387f5e0dc10..8bb5a5b0d98 100644
--- a/README/ReleaseNotes/v610/index.md
+++ b/README/ReleaseNotes/v610/index.md
@@ -41,8 +41,8 @@ The following interfaces have been removed, after deprecation in v6.08.
 
 ### Core
 
-- The enum constant TRef::kNotComputed was never used and has been removed.
-- The enum constantTClonesArray::kNoSplit has not been used since v2.26 and has been removed.
+- The enum constant `TRef::kNotComputed`, `TLink::kObjIsParent` were never used and have been removed.
+- The enum constant `TClonesArray::kNoSplit` has not been used since v2.26 and has been removed.
 
 ## Interpreter
 
diff --git a/graf2d/graf/inc/TLink.h b/graf2d/graf/inc/TLink.h
index cf2bbf2cb13..8a411a6686d 100644
--- a/graf2d/graf/inc/TLink.h
+++ b/graf2d/graf/inc/TLink.h
@@ -22,7 +22,7 @@ protected:
    void   *fLink;           ///< pointer to object
 
 public:
-   enum EStatusBits { kObjIsParent = BIT(1) , kIsStarStar = BIT(2)};
+   enum EStatusBits { kIsStarStar = BIT(2)};
    TLink();
    TLink(Double_t x, Double_t y, void *pointer);
    virtual ~TLink();
-- 
GitLab