diff options
Diffstat (limited to 'src/wasm/wasm-debug.cpp')
-rw-r--r-- | src/wasm/wasm-debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm/wasm-debug.cpp b/src/wasm/wasm-debug.cpp index 3e0749f36..8ca06b04d 100644 --- a/src/wasm/wasm-debug.cpp +++ b/src/wasm/wasm-debug.cpp @@ -488,7 +488,7 @@ struct LocationUpdater { // Map start of line tables in the debug_line section to their new locations. std::unordered_map<BinaryLocation, BinaryLocation> debugLineMap; - typedef std::pair<BinaryLocation, BinaryLocation> OldToNew; + using OldToNew = std::pair<BinaryLocation, BinaryLocation>; // Map of compile unit index => old and new base offsets (i.e., in the // original binary and in the new one). |