Fix style of "const".

This commit is contained in:
chriseth
2019-02-13 16:34:53 +01:00
parent dbb5438fed
commit 17ea467e5b
11 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ private:
YulStringRepository::Handle m_handle{ 0, YulStringRepository::emptyHash() };
};
inline YulString operator "" _yulstring(const char *_string, std::size_t _size)
inline YulString operator "" _yulstring(char const* _string, std::size_t _size)
{
return YulString(std::string(_string, _size));
}