From d36b1e809a78f546c9bbec9778449aa1f1ea1000 Mon Sep 17 00:00:00 2001 From: Brett Date: Thu, 13 Mar 2025 15:06:59 -0400 Subject: [PATCH] refine terms --- CMakeLists.txt | 2 +- src/michael_examples.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b0b80e1..9c2357b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/src/michael_examples.cpp b/src/michael_examples.cpp index ec4076d..88b466c 100644 --- a/src/michael_examples.cpp +++ b/src/michael_examples.cpp @@ -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 } /*