fixed wrong tab alignment in YulUtilFunctions.h

This commit is contained in:
Ishtiaque Zahid 2022-08-03 11:18:10 +06:00
parent d5a78b18b3
commit 3e70a406af

View File

@ -232,8 +232,8 @@ public:
std::string storageArrayPopFunction(ArrayType const& _type);
/// @returns the name of a function that pushes an element to a storage array
/// @param _fromType represents the type of the element being pushed.
/// If _fromType is ReferenceType the function will perform deep copy.
/// @param _fromType represents the type of the element being pushed.
/// If _fromType is ReferenceType the function will perform deep copy.
/// signature: (array, value)
std::string storageArrayPushFunction(ArrayType const& _type, Type const* _fromType = nullptr);
@ -530,7 +530,7 @@ public:
std::string externalFunctionPointersEqualFunction();
private:
/// @returns the name of a function that copies a struct from calldata or memory to storage
/// @returns the name of a function that copies a struct from calldata or memory to storage
/// signature: (slot, value) ->
std::string copyStructToStorageFunction(StructType const& _from, StructType const& _to);