-
-
Notifications
You must be signed in to change notification settings - Fork 57
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
Add support for runtime ratio object #137
Conversation
e2d82f4
to
8bb4005
Compare
3dc71dd
to
dc6ddef
Compare
for(auto const f : failures) | ||
{ | ||
std::cout << f.path << std::endl; | ||
std::cout << f.error << std::endl; | ||
} |
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.
Why is this here?
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.
should be removed now.
compiler+runtime/bin/compile
Outdated
git_root=$(git rev-parse --show-toplevel) | ||
"$git_root"/compiler+runtime/bin/format |
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.
Please use a pre-commit hook for this instead. Nobody else needs this hooked into the compile script; our editors are running the formatter for us.
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.
removed.
native_integer radix{ 10 }; | ||
/* The 'r' used in arbitrary radix (prefixed with N and then r, where N is the radix (2 <= radix <= 36); */ | ||
/* e.g. 2r10101 for binary, 16rebed00d for hex) */ | ||
native_bool found_r{}; | ||
/* Whether the previous token requires a space after it. */ |
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.
This was a ratio PR, but it now contains some of your radix changes too. Any reason these were merged, especially when you have a separate radix PR?
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.
i dropped the integer related commit.
Nice work, Jianling! |
everything should work.
this closes #66.