Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion liblangutil/Exceptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ struct ErrorId
bool operator!=(ErrorId const& _rhs) const { return !(*this == _rhs); }
bool operator<(ErrorId const& _rhs) const { return error < _rhs.error; }
};
constexpr ErrorId operator"" _error(unsigned long long _error) { return ErrorId{ _error }; }
constexpr ErrorId operator""_error(unsigned long long _error) { return ErrorId{ _error }; }

class Error: virtual public util::Exception
{
Expand Down
2 changes: 1 addition & 1 deletion libyul/YulString.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ class YulString
YulStringRepository::Handle m_handle{ 0, YulStringRepository::emptyHash() };
};

inline YulString operator "" _yulname(char const* _string, std::size_t _size)
inline YulString operator""_yulname(char const* _string, std::size_t _size)
{
return YulString(std::string_view(_string, _size));
}
Expand Down