summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorqkzk <qu3nt1n@gmail.com>2022-09-25 13:44:52 +0200
committerqkzk <qu3nt1n@gmail.com>2022-09-25 13:44:52 +0200
commitb3ae4a500a0e7f94d93697703766c1e54790dc69 (patch)
treed75862cb8fe5e777dc7a59e695194c8c97e6bd07
parentc8e8d205430554ee90f47ec8824f860dc9b6446e (diff)
delete logs from reporefactor-status
-rw-r--r--src/stderr.log11
-rwxr-xr-xstderr.log31
2 files changed, 0 insertions, 42 deletions
diff --git a/src/stderr.log b/src/stderr.log
deleted file mode 100644
index 086decd..0000000
--- a/src/stderr.log
+++ /dev/null
@@ -1,11 +0,0 @@
-warning: unused variable: `path_text`
- --> src/main.rs:116:13
- |
-116 | let mut path_text: &str;
- | ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_path_text`
- |
- = note: `#[warn(unused_variables)]` on by default
-
-warning: `fm` (bin "fm") generated 1 warning
- Finished dev [unoptimized + debuginfo] target(s) in 0.01s
- Running `/home/quentin/gclem/dev/rust/fm/target/debug/fm`
diff --git a/stderr.log b/stderr.log
deleted file mode 100755
index 39065fa..0000000
--- a/stderr.log
+++ /dev/null
@@ -1,31 +0,0 @@
- Compiling fm v0.1.0 (/home/quentin/gclem/dev/rust/fm)
-error[E0061]: this function takes 6 arguments but 4 arguments were supplied
- --> src/main.rs:527:22
- |
-527 | let mut status = Status::new(term, path_content, args, colors);
- | ^^^^^^^^^^^---------------------------------- two arguments of type `String` and `String` are missing
- |
-note: associated function defined here
- --> src/main.rs:193:8
- |
-193 | fn new(
- | ^^^
-194 | term: Term<()>,
- | --------------
-195 | path_content: PathContent,
- | -------------------------
-196 | args: Config,
- | ------------
-197 | colors: Colors,
- | --------------
-198 | terminal: String,
- | ----------------
-199 | opener: String,
- | --------------
-help: provide the arguments
- |
-527 | let mut status = Status::new(term, path_content, args, colors, /* String */, /* String */);
- | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-For more information about this error, try `rustc --explain E0061`.
-error: could not compile `fm` due to previous error