make SectionKind::Kind completely private now.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77836 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-08-02 00:04:12 +00:00
parent 1ef9be2883
commit 7b1dcdfce1

View File

@ -26,7 +26,6 @@ namespace llvm {
/// in order to explain the predicates below.
///
class SectionKind {
public:
enum Kind {
/// Metadata - Debug info sections or other metadata.
Metadata,
@ -113,10 +112,7 @@ public:
/// linked image.
ReadOnlyWithRelLocal
};
protected:
Kind K : 8;
} K : 8;
public:
bool isMetadata() const { return K == Metadata; }