Skip to content

Commit

Permalink
9.40 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jfriesne committed Jun 24, 2024
1 parent d52d9f4 commit 0510bec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ key: - new feature
* bug fixed
o other

9.40 -
9.40 - Released 6/24/2024
- Added a MUSCLE_STATIC_ASSERT_ARRAY_LENGTH macro to support/MuscleSupport.h
so that array declarations can error out at compile time if they don't
contain the expected number of values.
Expand Down
6 changes: 3 additions & 3 deletions support/BitChord.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ namespace muscle_private {extern const char * fake_nullptr[1];}
# define MUSCLE_BITCHORD_NULLPTR nullptr
#endif

/** A templated class for implement an N-bit-long bit-chord. Useful for doing efficient parallel boolean operations
* on bits-strings of lengths that can't fit in any of the standard integer types, and also for holding bit-shifted
/** A templated class that implements an N-bit-long bit-chord. Useful for doing efficient parallel boolean operations
* on bits-strings of lengths that can't fit in any of the standard integer types, and also for holding enumerated
* boolean flags in a "safe" container so that you can query or manipulate the flags via human-readable method-calls
* instead of easy-to-get-wrong bit-shifting operators.
*
Expand All @@ -38,7 +38,7 @@ namespace muscle_private {extern const char * fake_nullptr[1];}
template <uint32 NumBits, class TagClass=Void, const char * optLabelArray[NumBits]=MUSCLE_BITCHORD_NULLPTR> class MUSCLE_NODISCARD BitChord : public PseudoFlattenable<BitChord<NumBits, TagClass, optLabelArray> >
{
public:
/** Default constructor */
/** Default constructor - Sets all bits to zero */
MUSCLE_CONSTEXPR_17 BitChord() {ClearAllBits();}

#ifndef MUSCLE_AVOID_CPLUSPLUS11_BITCHORD
Expand Down

0 comments on commit 0510bec

Please sign in to comment.