[llvm] r353060 - [WebAssembly] Remove redundant namespaces qualifiers. NFC.
Sam Clegg via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 4 09:26:22 PST 2019
Author: sbc
Date: Mon Feb 4 09:26:22 2019
New Revision: 353060
URL: http://llvm.org/viewvc/llvm-project?rev=353060&view=rev
Log:
[WebAssembly] Remove redundant namespaces qualifiers. NFC.
Differential Revision: https://reviews.llvm.org/D57610
Modified:
llvm/trunk/include/llvm/BinaryFormat/Wasm.h
Modified: llvm/trunk/include/llvm/BinaryFormat/Wasm.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/BinaryFormat/Wasm.h?rev=353060&r1=353059&r2=353060&view=diff
==============================================================================
--- llvm/trunk/include/llvm/BinaryFormat/Wasm.h (original)
+++ llvm/trunk/include/llvm/BinaryFormat/Wasm.h Mon Feb 4 09:26:22 2019
@@ -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 WasmGlobalT
return !(LHS == RHS);
}
-std::string toString(wasm::WasmSymbolType type);
+std::string toString(WasmSymbolType type);
std::string relocTypetoString(uint32_t type);
} // end namespace wasm
More information about the llvm-commits
mailing list