[WebAssembly] Remove redundant namespaces qualifiers. NFC.

Differential Revision: https://reviews.llvm.org/D57610

llvm-svn: 353060
This commit is contained in:
Sam Clegg 2019-02-04 17:26:22 +00:00
parent 68d428e578
commit d00c02c0f9
1 changed files with 5 additions and 5 deletions

View File

@ -309,13 +309,13 @@ enum class ValType {
};
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 @@ inline bool operator!=(const WasmGlobalType &LHS, const WasmGlobalType &RHS) {
return !(LHS == RHS);
}
std::string toString(wasm::WasmSymbolType type);
std::string toString(WasmSymbolType type);
std::string relocTypetoString(uint32_t type);
} // end namespace wasm