[PATCH] D57610: [WebAssembly] Remove redundant namespaces qualifiers. NFC.

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 4 09:26:19 PST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL353060: [WebAssembly] Remove redundant namespaces qualifiers. NFC. (authored by sbc, committed by ).

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57610/new/

https://reviews.llvm.org/D57610

Files:
  llvm/trunk/include/llvm/BinaryFormat/Wasm.h


Index: llvm/trunk/include/llvm/BinaryFormat/Wasm.h
===================================================================
--- llvm/trunk/include/llvm/BinaryFormat/Wasm.h
+++ llvm/trunk/include/llvm/BinaryFormat/Wasm.h
@@ -309,13 +309,13 @@
 };
 
 struct WasmSignature {
-  SmallVector<wasm::ValType, 1> Returns;
-  SmallVector<wasm::ValType, 4> Params;
+  SmallVector<ValType, 1> Returns;
+  SmallVector<ValType, 4> Params;
   // Support empty and tombstone instances, needed by DenseMap.
   enum { Plain, Empty, Tombstone } State = Plain;
 
-  WasmSignature(SmallVector<wasm::ValType, 1> &&InReturns,
-                SmallVector<wasm::ValType, 4> &&InParams)
+  WasmSignature(SmallVector<ValType, 1> &&InReturns,
+                SmallVector<ValType, 4> &&InParams)
       : Returns(InReturns), Params(InParams) {}
   WasmSignature() = default;
 };
@@ -338,7 +338,7 @@
   return !(LHS == RHS);
 }
 
-std::string toString(wasm::WasmSymbolType type);
+std::string toString(WasmSymbolType type);
 std::string relocTypetoString(uint32_t type);
 
 } // end namespace wasm


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57610.185073.patch
Type: text/x-patch
Size: 1066 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190204/004b9475/attachment.bin>


More information about the llvm-commits mailing list