-
Notifications
You must be signed in to change notification settings - Fork 325
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
Core revamp part 3 #255
Core revamp part 3 #255
Conversation
Looks great! Although I will remark that we should probably rename all occurrences of Unrelated, given, but just something I've noticed that we haven't fully accounted for. |
@fairingrey - I think a separate PR with full sweep of it should be readily merge-able. (Could you open an issue? It'll make a good first issue too) |
@@ -16,7 +16,7 @@ impl std::fmt::Display for StringError { | |||
#[macro_export] | |||
macro_rules! err_fmt { | |||
{$($t:tt)*} => { | |||
crate::error::StringError(format!($($t)*)) | |||
$crate::error::StringError(format!($($t)*)) |
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.
Was this intentional?
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.
Hi @yoshuawuyts - yes! This is needed since err_fmt
is in tide_core and also re-exported by tide
.
With 4 approvals, I'll go ahead and merge this 👍 |
Description
tide
lib.rstide_core::internal
Motivation and Context
#252, #162
How Has This Been Tested?
All tests passed
Types of changes
Checklist: