refine terms

main
Brett 2025-03-13 15:06:59 -04:00
parent afd9ad3555
commit d36b1e809a
2 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ macro(blt_add_project name source type)
project(tower-defense)
endmacro()
project(tower-defense VERSION 0.0.4)
project(tower-defense VERSION 0.0.5)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)

View File

@ -143,13 +143,13 @@ void michael_examples()
// so test1, test2, and vector_of_rules will be destroyed here.
// (hint) order of deletion
// (hint) order of destruction
// I (0) am deleted -> (1) that was moved when the vector expanded
// I (1) am deleted -> (1) that is in the vector
// I (2) am deleted -> (2) that is in the vector
// I (0) am deleted -> test2 object
// I (1) am deleted -> test1 object
// you'll notice that deletion is in reverse order of declaration
// you'll notice that destruction is in reverse order of declaration
}
/*