From 9916f10520ffe0e2093f2e4d5971651a07756d51 Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Thu, 18 Apr 2024 17:18:00 -0400 Subject: [PATCH] Update suffixes for basetools docs --- doc/QuickStartGuides/2-BaseTools.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/QuickStartGuides/2-BaseTools.md b/doc/QuickStartGuides/2-BaseTools.md index 3db026984e..fff74500c3 100644 --- a/doc/QuickStartGuides/2-BaseTools.md +++ b/doc/QuickStartGuides/2-BaseTools.md @@ -6,7 +6,7 @@ standard library, but provide extra protection against common memory use errors and additional information to the developer. These protections can be turned off by comiling with -DNDEBUG. -## base/assert.h +## base/assert.hpp This file adds an `emp_assert` macro that can handle all of the same functionality as the standard library assert, but with additional @@ -35,7 +35,7 @@ compiled using the `NDEBUG` option (for most compilers, this deactivation is accomplished by using the `-DNDEBUG` flag at compile time.) -## base/array.h and base/vector.h +## base/array.hpp and base/vector.hpp These files setup the `emp::array<...>` and `emp::vector<...>` template objects, which behave almost identically to `std::array<...>` and @@ -44,7 +44,7 @@ bounds checking when they are indexed into or specific size matters. As with asserts, these additional bounds checks are removed when compiled with the `NDEBUG` option. -## base/Ptr.h +## base/Ptr.hpp The `emp::Ptr<...>` template provides an alternate method of building pointers, but with the ability to turn on additional debugging