File tree Expand file tree Collapse file tree 1 file changed +0
-29
lines changed
clang/include/clang/Serialization Expand file tree Collapse file tree 1 file changed +0
-29
lines changed Original file line number Diff line number Diff line change @@ -2058,35 +2058,6 @@ enum CtorInitializerType {
2058
2058
// / Kinds of cleanup objects owned by ExprWithCleanups.
2059
2059
enum CleanupObjectKind { COK_Block, COK_CompoundLiteral };
2060
2060
2061
- // / Describes the redeclarations of a declaration.
2062
- struct LocalRedeclarationsInfo {
2063
- // The ID of the first declaration
2064
- DeclID FirstID;
2065
-
2066
- // Offset into the array of redeclaration chains.
2067
- unsigned Offset;
2068
-
2069
- friend bool operator <(const LocalRedeclarationsInfo &X,
2070
- const LocalRedeclarationsInfo &Y) {
2071
- return X.FirstID < Y.FirstID ;
2072
- }
2073
-
2074
- friend bool operator >(const LocalRedeclarationsInfo &X,
2075
- const LocalRedeclarationsInfo &Y) {
2076
- return X.FirstID > Y.FirstID ;
2077
- }
2078
-
2079
- friend bool operator <=(const LocalRedeclarationsInfo &X,
2080
- const LocalRedeclarationsInfo &Y) {
2081
- return X.FirstID <= Y.FirstID ;
2082
- }
2083
-
2084
- friend bool operator >=(const LocalRedeclarationsInfo &X,
2085
- const LocalRedeclarationsInfo &Y) {
2086
- return X.FirstID >= Y.FirstID ;
2087
- }
2088
- };
2089
-
2090
2061
// / Describes the categories of an Objective-C class.
2091
2062
struct ObjCCategoriesInfo {
2092
2063
// The ID of the definition
You can’t perform that action at this time.
0 commit comments