From 9733ae7483775116af1c506a54bd5b5eac3ef2c7 Mon Sep 17 00:00:00 2001 From: Christian Parpart Date: Wed, 17 Apr 2019 14:45:29 +0200 Subject: [PATCH] [libsolidity] TypeProvider: cleanup unnecessary std:: qualifiers --- libsolidity/ast/TypeProvider.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libsolidity/ast/TypeProvider.cpp b/libsolidity/ast/TypeProvider.cpp index 075b698f8..6e94c011b 100644 --- a/libsolidity/ast/TypeProvider.cpp +++ b/libsolidity/ast/TypeProvider.cpp @@ -29,10 +29,10 @@ InaccessibleDynamicType const TypeProvider::m_inaccessibleDynamic{}; /// The string and bytes unique_ptrs are initialized when they are first used because /// they rely on `byte` being available which we cannot guarantee in the static init context. -std::unique_ptr TypeProvider::m_bytesStorage; -std::unique_ptr TypeProvider::m_bytesMemory; -std::unique_ptr TypeProvider::m_stringStorage; -std::unique_ptr TypeProvider::m_stringMemory; +unique_ptr TypeProvider::m_bytesStorage; +unique_ptr TypeProvider::m_bytesMemory; +unique_ptr TypeProvider::m_stringStorage; +unique_ptr TypeProvider::m_stringMemory; TupleType const TypeProvider::m_emptyTuple{}; AddressType const TypeProvider::m_payableAddress{StateMutability::Payable};