We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f59264f commit 2b21695Copy full SHA for 2b21695
llvm/include/llvm/MC/MCSection.h
@@ -93,10 +93,6 @@ class MCSectionData {
93
return const_cast<MCSectionData *>(this)->rend();
94
}
95
96
- size_t size() const;
97
-
98
- bool empty() const;
99
100
void dump();
101
102
/// @}
llvm/lib/MC/MCSection.cpp
@@ -105,7 +105,3 @@ MCSectionData::reverse_iterator MCSectionData::rbegin() {
105
MCSectionData::reverse_iterator MCSectionData::rend() {
106
return Fragments.rend();
107
108
109
-size_t MCSectionData::size() const { return Fragments.size(); }
110
111
-bool MCSectionData::empty() const { return Fragments.empty(); }
0 commit comments