fix: release eq
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
// TODO: Contextful String
|
||||
|
||||
use ecow::EcoString;
|
||||
|
||||
pub struct StringContext {
|
||||
context: Vec<()>,
|
||||
}
|
||||
@@ -15,12 +13,12 @@ impl StringContext {
|
||||
}
|
||||
|
||||
pub struct ContextfulString {
|
||||
string: EcoString,
|
||||
string: String,
|
||||
context: StringContext,
|
||||
}
|
||||
|
||||
impl ContextfulString {
|
||||
pub fn new(string: EcoString) -> ContextfulString {
|
||||
pub fn new(string: String) -> ContextfulString {
|
||||
ContextfulString {
|
||||
string,
|
||||
context: StringContext::new(),
|
||||
|
||||
Reference in New Issue
Block a user