forked from OSchip/llvm-project
[WebAssembly] MC: Remove redundant `private` specifiers
This is inline with the other MCSection and MCSymbol subclasses llvm-svn: 324950
This commit is contained in:
parent
3cd48fb124
commit
126cf39d09
|
@ -26,8 +26,6 @@ class MCSymbol;
|
|||
|
||||
/// This represents a section on wasm.
|
||||
class MCSectionWasm final : public MCSection {
|
||||
private:
|
||||
|
||||
/// This is the name of the section. The referenced memory is owned by
|
||||
/// TargetLoweringObjectFileWasm's WasmUniqueMap.
|
||||
StringRef SectionName;
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
namespace llvm {
|
||||
|
||||
class MCSymbolWasm : public MCSymbol {
|
||||
private:
|
||||
bool IsFunction = false;
|
||||
bool IsWeak = false;
|
||||
bool IsHidden = false;
|
||||
|
|
Loading…
Reference in New Issue