IT Nursery
With this simple class I am getting the compiler warning Attempting to modify/access x within its own setter/getter and when I use it like this: var p: point =...
  • May 29, 2022
  • 0 Comments
Since the new ADT preview version (version 21), they have a new lint warning that tells me the next thing on the manifest file (in the application tag): Should...
  • May 18, 2022
  • 0 Comments
I often hear that when compiling C and C++ programs I should “always enable compiler warnings”. Why is this necessary? How do I do that? Sometimes I also hear...
  • May 13, 2022
  • 0 Comments
struct SemanticDirection; fn main() {} warning: struct is never used: `SemanticDirection` --> src/main.rs:1:1 | 1 | struct SemanticDirection; | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: #[warn(dead_code)] on by default I will...
  • May 10, 2022
  • 0 Comments