-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Purge using namespace std from libsolidity/interface #14492
Purge using namespace std from libsolidity/interface #14492
Conversation
5647039
to
36d66ad
Compare
36d66ad
to
342ba03
Compare
externalFunctions[sig] = gasToJson(gasEstimator.functionalEstimation(*items, sig)); | ||
} | ||
|
||
if (contract.fallbackFunction()) | ||
/// This needs to be set to an invalid signature in order to trigger the fallback, | ||
/// without the shortcut (of CALLDATSIZE == 0), and therefore to receive the upper bound. | ||
/// An empty string ("") would work to trigger the shortcut only. | ||
/// An empty std::string ("") would work to trigger the shortcut only. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// An empty std::string ("") would work to trigger the shortcut only. | |
/// An empty string ("") would work to trigger the shortcut only. |
|
||
// If the link reference does not contain a colon, assume that the file name is missing and | ||
// the whole string represents the library name. | ||
// the whole std::string represents the library name. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// the whole std::string represents the library name. | |
// the whole string represents the library name. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thought these were the ones from the other PR that I've already fixed, and merged before looking. I've fixed both of these in the other PR (after rebase) - #14493.
Related: #14403