Skip to content

Commit

Permalink
Update suffixes for basetools docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mmore500 committed Apr 18, 2024
1 parent 108d4b0 commit 9916f10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/QuickStartGuides/2-BaseTools.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 9916f10

Please sign in to comment.