[WebAssembly] MC: Remove redundant `private` specifiers
authorSam Clegg <sbc@chromium.org>
Mon, 12 Feb 2018 22:29:51 +0000 (22:29 +0000)
committerSam Clegg <sbc@chromium.org>
Mon, 12 Feb 2018 22:29:51 +0000 (22:29 +0000)
This is inline with the other MCSection and MCSymbol subclasses

llvm-svn: 324950

llvm/include/llvm/MC/MCSectionWasm.h
llvm/include/llvm/MC/MCSymbolWasm.h

index cc467ed..a5faa0a 100644 (file)
@@ -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;
index 37c2848..8711940 100644 (file)
@@ -15,7 +15,6 @@
 namespace llvm {
 
 class MCSymbolWasm : public MCSymbol {
-private:
   bool IsFunction = false;
   bool IsWeak = false;
   bool IsHidden = false;