Make the kind actually be private.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77139 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2009-07-26 06:51:27 +00:00
parent 2ceb60a677
commit 37939c910f

View File

@ -124,10 +124,10 @@ namespace llvm {
};
//private:
Kind K : 8; // This is private.
private:
Kind K : 8;
//public:
public:
bool isText() const {
return K == Text;
@ -183,7 +183,8 @@ namespace llvm {
}
static SectionKind get(Kind K) {
SectionKind Res = { K };
SectionKind Res;
Res.K = K;
return Res;
}
};