Replace TypePointer with Type const*

This commit is contained in:
Mathias Baumann
2021-03-23 11:47:19 +01:00
parent 8c583784c0
commit e197ebbdd1
50 changed files with 347 additions and 353 deletions
+2 -2
View File
@@ -42,10 +42,10 @@ private:
Json::Value generate(VariableDeclaration const& _var, u256 const& _slot, unsigned _offset);
/// Generates the JSON information for @param _type
void generate(TypePointer _type);
void generate(Type const* _type);
/// The key for the JSON object describing a type.
std::string typeKeyName(TypePointer _type);
std::string typeKeyName(Type const* _type);
Json::Value m_types;