From ec47c8946ba5f78563b7eca2512b3cee68db45b4 Mon Sep 17 00:00:00 2001 From: Christian Parpart Date: Wed, 21 Nov 2018 12:42:34 +0100 Subject: Isolating libyul library API into its own namespace `yul`. --- libyul/AsmAnalysisInfo.h | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'libyul/AsmAnalysisInfo.h') diff --git a/libyul/AsmAnalysisInfo.h b/libyul/AsmAnalysisInfo.h index 372ff3ed..08a35ade 100644 --- a/libyul/AsmAnalysisInfo.h +++ b/libyul/AsmAnalysisInfo.h @@ -28,11 +28,7 @@ #include #include -namespace dev -{ -namespace solidity -{ -namespace assembly +namespace yul { struct Scope; @@ -40,13 +36,11 @@ struct Scope; struct AsmAnalysisInfo { using StackHeightInfo = std::map; - using Scopes = std::map>; + using Scopes = std::map>; Scopes scopes; StackHeightInfo stackHeightInfo; /// Virtual blocks which will be used for scopes for function arguments and return values. - std::map> virtualBlocks; + std::map> virtualBlocks; }; } -} -} -- cgit